From 93b26f89336d83f2eab43ced0081d60b1acf2d7f Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Thu, 26 Mar 2009 17:25:12 +0000 Subject: * iars: Serialize information about item creators to archive --- .../Framework/Serialization/ArchiveConstants.cs | 41 ++++++++++++---------- 1 file changed, 23 insertions(+), 18 deletions(-) (limited to 'OpenSim/Framework/Serialization/ArchiveConstants.cs') diff --git a/OpenSim/Framework/Serialization/ArchiveConstants.cs b/OpenSim/Framework/Serialization/ArchiveConstants.cs index d0a0985..8ce7b56 100644 --- a/OpenSim/Framework/Serialization/ArchiveConstants.cs +++ b/OpenSim/Framework/Serialization/ArchiveConstants.cs @@ -35,49 +35,54 @@ namespace OpenSim.Framework.Serialization /// public class ArchiveConstants { - /// + /// /// The location of the archive control file - /// + /// public static readonly string CONTROL_FILE_PATH = "archive.xml"; - /// + /// /// Path for the assets held in an archive - /// + /// public static readonly string ASSETS_PATH = "assets/"; - /// + /// /// Path for the inventory data - /// + /// public static readonly string INVENTORY_PATH = "inventory/"; - /// + /// /// Path for the prims file - /// + /// public static readonly string OBJECTS_PATH = "objects/"; - /// + /// /// Path for terrains. Technically these may be assets, but I think it's quite nice to split them out. - /// + /// public static readonly string TERRAINS_PATH = "terrains/"; - /// + /// /// Path for region settings. - /// + /// public static readonly string SETTINGS_PATH = "settings/"; + + /// + /// Path for user profiles + /// + public const string USERS_PATH = "users/"; - /// + /// /// The character the separates the uuid from extension information in an archived asset filename - /// + /// public static readonly string ASSET_EXTENSION_SEPARATOR = "_"; - /// + /// /// Used to separate components in an inventory node name - /// + /// public static readonly string INVENTORY_NODE_NAME_COMPONENT_SEPARATOR = "__"; - /// + /// /// Extensions used for asset types in the archive - /// + /// public static readonly IDictionary ASSET_TYPE_TO_EXTENSION = new Dictionary(); public static readonly IDictionary EXTENSION_TO_ASSET_TYPE = new Dictionary(); -- cgit v1.1