Index: samples/pub/index.php
===================================================================
--- samples/pub/index.php	(revision 4569)
+++ samples/pub/index.php	(working copy)
@@ -17,7 +17,7 @@
 // | By default the 'development' environment sets Agavi into a debug mode.    |
 // | In debug mode among other things the cache is cleaned on every request.   |
 // +---------------------------------------------------------------------------+
-Agavi::bootstrap('development');
+Agavi::bootstrap('production');
 
 // +---------------------------------------------------------------------------+
 // | Call the controller's dispatch method on the default context              |
Index: samples/app/config.php
===================================================================
--- samples/app/config.php	(revision 4569)
+++ samples/app/config.php	(working copy)
@@ -55,4 +55,7 @@
 
 date_default_timezone_set('Europe/London');
 
+// AnotherContext
+AgaviConfig::set('core.context_implementation', 'AnotherContext');
+
 ?>
\ No newline at end of file
Index: samples/app/lib/core/AnotherContext.class.php
===================================================================
--- samples/app/lib/core/AnotherContext.class.php	(revision 0)
+++ samples/app/lib/core/AnotherContext.class.php	(revision 0)
@@ -0,0 +1,9 @@
+<?php
+class AnotherContext extends AgaviContext {
+	private $foo = 'bar';
+	
+	public function bar() 
+	{
+		return $this->foo;
+	}
+}
\ No newline at end of file
Index: samples/app/config/compile.xml
===================================================================
--- samples/app/config/compile.xml	(revision 4569)
+++ samples/app/config/compile.xml	(working copy)
@@ -1,3 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <ae:configurations xmlns:ae="http://agavi.org/agavi/config/global/envelope/1.0" xmlns="http://agavi.org/agavi/config/parts/compile/1.0" parent="%core.system_config_dir%/compile.xml">
+
+	<compiles>
+		<compile>%core.lib_dir%/core/AnotherContext.class.php</compile>
+	</compiles>
+
 </ae:configurations>
\ No newline at end of file
Index: samples/app/config/autoload.xml
===================================================================
--- samples/app/config/autoload.xml	(revision 4569)
+++ samples/app/config/autoload.xml	(working copy)
@@ -2,6 +2,8 @@
 <ae:configurations xmlns="http://agavi.org/agavi/config/parts/autoload/1.0" xmlns:ae="http://agavi.org/agavi/config/global/envelope/1.0" parent="%core.system_config_dir%/autoload.xml">
 	<ae:configuration>
 		<autoloads>
+			<autoload name="AnotherContext">%core.lib_dir%/core/AnotherContext.class.php</autoload>
+		
 			<autoload name="AgaviSampleAppBaseAction">%core.lib_dir%/action/AgaviSampleAppBaseAction.class.php</autoload>
 			<autoload name="AgaviSampleAppBaseModel">%core.lib_dir%/model/AgaviSampleAppBaseModel.class.php</autoload>
 			<autoload name="AgaviSampleAppBaseView">%core.lib_dir%/view/AgaviSampleAppBaseView.class.php</autoload>
