* Deprecate load-xml and save-xml in favour of load-xml2/save-xml2.

* Please file a mantis if you are not able to use load-xml2/save-xml2 but can successfully use load-xml/save-xml
0.6.0-stable
Justin Clarke Casey 2008-05-21 22:57:29 +00:00
parent 42ac35ba7d
commit cca1563a78
1 changed files with 4 additions and 0 deletions

View File

@ -289,6 +289,8 @@ namespace OpenSim
break; break;
case "save-xml": case "save-xml":
m_log.Error("[CONSOLE]: PLEASE NOTE, save-xml is DEPRECATED and may be REMOVED soon. If you are using this and there is some reason you can't use save-xml2, please file a mantis detailing the reason.");
if (cmdparams.Length > 0) if (cmdparams.Length > 0)
{ {
m_sceneManager.SaveCurrentSceneToXml(cmdparams[0]); m_sceneManager.SaveCurrentSceneToXml(cmdparams[0]);
@ -300,6 +302,8 @@ namespace OpenSim
break; break;
case "load-xml": case "load-xml":
m_log.Error("[CONSOLE]: PLEASE NOTE, load-xml is DEPRECATED and may be REMOVED soon. If you are using this and there is some reason you can't use load-xml2, please file a mantis detailing the reason.");
LLVector3 loadOffset = new LLVector3(0, 0, 0); LLVector3 loadOffset = new LLVector3(0, 0, 0);
if (cmdparams.Length > 0) if (cmdparams.Length > 0)
{ {