Move unused inventory files into the attic

afrisby
Justin Clarke Casey 2007-12-31 20:09:47 +00:00
parent a8cb20355c
commit e0cf45fe21
4 changed files with 3 additions and 3 deletions

View File

@ -149,10 +149,10 @@ namespace OpenSim.Grid.InventoryServer
{ {
_manager = manager; _manager = manager;
_inventory = loadInventoryFromXmlFile("inventory/Inventory_Library.xml"); _inventory = loadInventoryFromXmlFile("attic/inventory/Inventory_Library.xml");
if (fixupInventory(_inventory)) if (fixupInventory(_inventory))
{ {
FileStream fs = new FileStream("inventory/Inventory_Library.xml", FileMode.Truncate, FileAccess.Write); FileStream fs = new FileStream("attic/inventory/Inventory_Library.xml", FileMode.Truncate, FileAccess.Write);
saveInventoryToStream(_inventory, fs); saveInventoryToStream(_inventory, fs);
fs.Flush(); fs.Flush();
fs.Close(); fs.Close();

View File

@ -11,4 +11,4 @@ this restriction will probably be lifted in the future, at which point the
inventory items and folders will only need to be configured on the grid inventory inventory items and folders will only need to be configured on the grid inventory
server (assuming you are running in grid mode rather than standalone) server (assuming you are running in grid mode rather than standalone)
Inventory_Default.xml and Inventory_Library.xml are unused at the moment. Files in the attic directory are currently unused.