Index: /CKEditor/branches/features/bbcode/_samples/bbcode.html
===================================================================
--- /CKEditor/branches/features/bbcode/_samples/bbcode.html	(revision 6767)
+++ /CKEditor/branches/features/bbcode/_samples/bbcode.html	(revision 6768)
@@ -6,5 +6,5 @@
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
-	<title>BBCode plugin &mdash; CKEditor Sample</title>
+	<title>BBCode Plugin &mdash; CKEditor Sample</title>
 	<meta content="text/html; charset=utf-8" http-equiv="content-type" />
 	<!-- CKReleaser %REMOVE_LINE%
@@ -18,14 +18,20 @@
 <body>
 	<h1 class="samples">
-		CKEditor Sample &mdash; BBCode plugin
+		CKEditor Sample &mdash; BBCode Plugin
 	</h1>
 	<div class="description">
 	<p>
-		This sample shows how to configure CKEditor to <strong>output <a href="http://en.wikipedia.org/wiki/BBCode">BBCode</a> format instead of outputting HTML</strong>,
-		along with the appropriate editor configurations that fits for a BBCode editing environment.
+		This sample shows how to configure CKEditor to output <a href="http://en.wikipedia.org/wiki/BBCode">BBCode</a> format instead of HTML.
+		Please note that the editor configuration was modify to reflect what is needed in a BBCode editing environment.
+		Smiley images, for example, were stripped to the emoticons that are commonly used in some BBCode dialects.
+	</p>
+	<p>
+		Please note that currently there is no standard for the BBCode markup language, so its implementation
+		for different platforms (message boards) can vary. This means that before using CKEditor to
+		output BBCode you may need to adjust the implementation to your own environment. 
 	</p>
 	<p>
 		A snippet of the configuration code can be seen below; check the source of this page for
-		full definition:
+		a full definition:
 	</p>
 	<pre class="samples">
@@ -33,4 +39,5 @@
 	{
 		extraPlugins : 'bbcode',
+		removePlugins : 'bidi,button,dialogadvtab,div,filebrowser,flash,format,forms,horizontalrule,iframe,indent,justify,liststyle,pagebreak,showborders,stylescombo,table,tabletools,templates',
 		toolbar :
 		[
@@ -43,7 +50,16 @@
 			['TextColor', '-', 'Smiley','SpecialChar', '-', 'Maximize']
 		],
-		...
-	});
-	</pre>
+		smiley_images :
+		[
+			'regular_smile.gif','sad_smile.gif','wink_smile.gif','teeth_smile.gif','tounge_smile.gif',
+			'embaressed_smile.gif','omg_smile.gif','whatchutalkingabout_smile.gif','angel_smile.gif','shades_smile.gif',
+			'cry_smile.gif','kiss.gif'
+		],
+		smiley_descriptions :
+		[
+			'smiley', 'sad', 'wink', 'laugh', 'cheeky', 'blush', 'surprise',
+			'indecision', 'angel', 'cool', 'crying', 'kiss'
+		]
+	});	</pre>
 	</div>
 
@@ -74,5 +90,7 @@
 					// Remove unused plugins.
 					removePlugins : 'bidi,button,dialogadvtab,div,filebrowser,flash,format,forms,horizontalrule,iframe,indent,justify,liststyle,pagebreak,showborders,stylescombo,table,tabletools,templates',
+					// Width and height are not supported in the BBCode format, so object resizing is disabled.
 					disableObjectResizing : true,
+					// Define font sizes in percent values.
 					fontSize_sizes : "30/30%;50/50%;100/100%;120/120%;150/150%;200/200%;300/300%",
 					toolbar :
@@ -86,4 +104,5 @@
 						['TextColor', '-', 'Smiley','SpecialChar', '-', 'Maximize']
 					],
+					// Strip CKEditor smileys to those commonly used in BBCode.
 					smiley_images :
 					[
Index: /CKEditor/branches/features/bbcode/_samples/index.html
===================================================================
--- /CKEditor/branches/features/bbcode/_samples/index.html	(revision 6767)
+++ /CKEditor/branches/features/bbcode/_samples/index.html	(revision 6768)
@@ -80,5 +80,5 @@
 			Configuring CKEditor to produce HTML code that can be used with Adobe Flash.
 		</li>
-		<li><a class="samples" href="bbcode.html">BBCodes</a><br />
+		<li><a class="samples" href="bbcode.html">Output for BBCode</a><br />
 			Configuring CKEditor to produce BBCode tags instead of HTML.
 		</li>
