* Put in stubs for "load-oar" command, including ultra-primitive temporary tar loading code

* Currently as a test, this will successfully load only the first file of an opensim archive and do absolutely nothing with it
This commit is contained in:
Justin Clarke Casey
2008-05-28 17:49:34 +00:00
parent c4868b0eda
commit fb91a1aa49
7 changed files with 198 additions and 14 deletions

View File

@@ -72,12 +72,12 @@ namespace OpenSim.Region.Environment.Modules.World.Archiver
public void ArchiveRegion(string savePath)
{
new ArchiveRequest(m_scene, savePath);
new ArchiveWriteRequest(m_scene, savePath);
}
public void DearchiveRegion(string loadPath)
{
m_log.Warn("[ARCHIVER]: Dearchive region not yet implemented");
new ArchiveReadRequest(m_scene, loadPath);
}
}
}
}