? .spaces_excluded_paths_828334-1.patch.swp
? plugins_space_type-825048-1.patch
? spaces-og_audience-671032-15.patch
? spaces_excluded_paths_828334-1.patch
? spaces_excluded_paths_828334-8.patch
? spaces_og-views-group-field-804668-2.patch
Index: spaces.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/spaces/spaces.install,v
retrieving revision 1.1.4.6.2.3.2.7
diff -u -p -r1.1.4.6.2.3.2.7 spaces.install
--- spaces.install	6 Aug 2010 16:37:14 -0000	1.1.4.6.2.3.2.7
+++ spaces.install	16 Nov 2010 21:43:43 -0000
@@ -13,6 +13,7 @@ function spaces_install() {
  */
 function spaces_uninstall() {
   drupal_uninstall_schema('spaces');
+  variable_del('spaces_purl_excluded_paths_override');
 }
 
 /**
Index: plugins/space_type.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/spaces/plugins/Attic/space_type.inc,v
retrieving revision 1.1.2.2
diff -u -p -r1.1.2.2 space_type.inc
--- plugins/space_type.inc	10 Jan 2010 20:46:16 -0000	1.1.2.2
+++ plugins/space_type.inc	16 Nov 2010 21:43:43 -0000
@@ -99,7 +99,7 @@ class space_type extends space {
    */
   function access_feature($op = 'view', $feature, $account = NULL) {
     $usable = spaces_features($this->type);
-    $features = variable_get('spaces_features', array());
+    $features = $this->controllers->variable->get('spaces_features');
     return user_access('access content') && isset($usable[$feature]) && !empty($features[$feature]);
   }
 
Index: plugins/space_type_purl.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/spaces/plugins/Attic/space_type_purl.inc,v
retrieving revision 1.1.2.5
diff -u -p -r1.1.2.5 space_type_purl.inc
--- plugins/space_type_purl.inc	11 Aug 2010 02:17:46 -0000	1.1.2.5
+++ plugins/space_type_purl.inc	16 Nov 2010 21:43:43 -0000
@@ -25,7 +25,8 @@ class space_type_purl extends space_type
    * Return an array of paths from which the space should never be active.
    */
   protected function excluded_paths() {
-    return array('features', 'features/*', 'admin', 'admin/*');
+    return variable_get('spaces_purl_excluded_paths_override',
+      array('features', 'features/*', 'admin', 'admin/*'));
   }
 
   /**
