Thank you kindly, TLaukkan for a patch that:

Added support for loading bare asset binaries (as opposed to 
xml encoded asset base) to both sandbox asset service and cable beach.
* Added support for enabling region asset service when mxp is enabled.
* Moved base http server content type defaulting before invocation of 
request handle method to allow for variable content type in the response.
This commit is contained in:
Charles Krinke
2009-04-21 19:42:36 +00:00
parent 48720ea7a2
commit 27c8cc5b1f
4 changed files with 91 additions and 26 deletions

View File

@@ -58,7 +58,9 @@ namespace OpenSim.Region.CoreModules.Framework.Services
m_scene = scene;
// This module is only on for standalones in hypergrid mode
enabled = !config.Configs["Startup"].GetBoolean("gridmode", true) && config.Configs["Startup"].GetBoolean("hypergrid", false);
enabled = (!config.Configs["Startup"].GetBoolean("gridmode", true)) &&
(config.Configs["Startup"].GetBoolean("hypergrid", true)||
config.Configs["MXP"].GetBoolean("Enabled", true));
}
}