Author: chabotc
Date: Mon Feb 23 14:41:50 2009
New Revision: 747035
URL: http://svn.apache.org/viewvc?rev=747035&view=rev
Log:
Adds the new config keys to the default configuration
Modified:
incubator/shindig/trunk/php/config/container.php
Modified: incubator/shindig/trunk/php/config/container.php
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/php/config/container.php?rev=747035&r1=747034&r2=747035&view=diff
==============================================================================
--- incubator/shindig/trunk/php/config/container.php (original)
+++ incubator/shindig/trunk/php/config/container.php Mon Feb 23 14:41:50 2009
@@ -55,6 +55,14 @@
// can also help prevent external parties using your rendering server (only
for the paranoid :)
'render_token_required' => false,
+ // Normally we would only rewrite the gadget's html if it has the <Optional
feature="content-rewrite"> set, however with this you can
+ // force the content to always be rewritten
+ 'rewrite_by_default' => false,
+
+ // Should we sanitize (remove scripts) from certain views? Right now this is
useless, but once service sided templating and OSML is done
+ // this could be useful to force (fast) html only gadgets on the profile
and/or home view. Set this to false or to an array of view names like:
array('profile', 'home')
+ 'sanitize_views' => false,
+
// Compress the inlined javascript, saves upto 50% of the document size
'compress_javascript' => true,