aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Console/RemoteConsole.cs
diff options
context:
space:
mode:
authorArthur Valadares2009-08-25 10:28:22 -0300
committerArthur Valadares2009-08-25 10:28:22 -0300
commit9c9fa51b0f005f570df2e3e3b84dfa3974935995 (patch)
tree49553fb3d3513f826f360eb426e1be7242a92aaf /OpenSim/Framework/Console/RemoteConsole.cs
parentAdds osDrawPolygon to OSSL. Works a little different then other OS Drawing fu... (diff)
parentClosed the web request and stream in SynchronousRestSessionObjectPoster -- ma... (diff)
downloadopensim-SC_OLD-9c9fa51b0f005f570df2e3e3b84dfa3974935995.zip
opensim-SC_OLD-9c9fa51b0f005f570df2e3e3b84dfa3974935995.tar.gz
opensim-SC_OLD-9c9fa51b0f005f570df2e3e3b84dfa3974935995.tar.bz2
opensim-SC_OLD-9c9fa51b0f005f570df2e3e3b84dfa3974935995.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim into arthursv
Diffstat (limited to 'OpenSim/Framework/Console/RemoteConsole.cs')
-rw-r--r--OpenSim/Framework/Console/RemoteConsole.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Framework/Console/RemoteConsole.cs b/OpenSim/Framework/Console/RemoteConsole.cs
index da8556a..1810614 100644
--- a/OpenSim/Framework/Console/RemoteConsole.cs
+++ b/OpenSim/Framework/Console/RemoteConsole.cs
@@ -217,6 +217,12 @@ namespace OpenSim.Framework.Console
217 id.AppendChild(xmldoc.CreateTextNode(sessionID.ToString())); 217 id.AppendChild(xmldoc.CreateTextNode(sessionID.ToString()));
218 218
219 rootElement.AppendChild(id); 219 rootElement.AppendChild(id);
220
221 XmlElement prompt = xmldoc.CreateElement("", "Prompt", "");
222 prompt.AppendChild(xmldoc.CreateTextNode(DefaultPrompt));
223
224 rootElement.AppendChild(prompt);
225
220 rootElement.AppendChild(MainConsole.Instance.Commands.GetXml(xmldoc)); 226 rootElement.AppendChild(MainConsole.Instance.Commands.GetXml(xmldoc));
221 227
222 reply["str_response_string"] = xmldoc.InnerXml; 228 reply["str_response_string"] = xmldoc.InnerXml;