* Added CloneCommand to TestClient for cloning appearances (no attachments yet)

* avatar_data output directory is libsl_data
* Added a blocking DirectoryManager.PeopleSearch
* Fixed Helpers.GetResourceStream()
* Added avatar_lad.xml to the Resources directory

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1510 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2007-11-30 23:19:05 +00:00
parent e7d14a119f
commit 3db394f974
11 changed files with 11356 additions and 15 deletions

View File

@@ -17,7 +17,7 @@ namespace libsecondlife.TestClient
public SetMasterCommand(TestClient testClient)
{
Name = "setmaster";
Description = "Sets the user name of the master user. The master user can IM to run commands. Usage: setmaster name";
Description = "Sets the user name of the master user. The master user can IM to run commands. Usage: setmaster [name]";
}
public override string Execute(string[] args, LLUUID fromAgentID)
@@ -28,7 +28,7 @@ namespace libsecondlife.TestClient
masterName = masterName.TrimEnd();
if (masterName.Length == 0)
return "Usage: setmaster name";
return "Usage: setmaster [name]";
DirectoryManager.DirPeopleReplyCallback callback = new DirectoryManager.DirPeopleReplyCallback(KeyResolvHandler);
Client.Directory.OnDirPeopleReply += callback;
@@ -61,7 +61,7 @@ namespace libsecondlife.TestClient
{
if (query != queryid)
return;
// We can't handle ambiguities here as nicely as we can in ClientManager.
resolvedMasterKey = matches[0].AgentID;
keyResolution.Set();
query = LLUUID.Zero;