diff options
Diffstat (limited to 'OpenSim/Server/Handlers/Web')
-rw-r--r-- | OpenSim/Server/Handlers/Web/WebServerConnector.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Server/Handlers/Web/WebServerConnector.cs b/OpenSim/Server/Handlers/Web/WebServerConnector.cs index f06d4d8..11bf435 100644 --- a/OpenSim/Server/Handlers/Web/WebServerConnector.cs +++ b/OpenSim/Server/Handlers/Web/WebServerConnector.cs | |||
@@ -237,7 +237,7 @@ namespace OpenSim.Server.Handlers.Web | |||
237 | m_log.ErrorFormat("[WEB SERVICE]: INVALID PATH {0} != {1}", Path.GetFullPath(path), Path.GetFullPath(Util.webDir())); | 237 | m_log.ErrorFormat("[WEB SERVICE]: INVALID PATH {0} != {1}", Path.GetFullPath(path), Path.GetFullPath(Util.webDir())); |
238 | reply["int_response_code"] = 404; | 238 | reply["int_response_code"] = 404; |
239 | reply["content_type"] = "text/html"; | 239 | reply["content_type"] = "text/html"; |
240 | reply["str_response_string"] = "<html><title>404 Unknown page</title><head></head><body bgcolor=\"black\" text=\"white\" alink=\"red\" link=\"blue\" vlink=\"purple\">" + | 240 | reply["str_response_string"] = "<html><title>404 Unknown page</title><head><link rel=\"shortcut icon\" href=\"SledjHamrIconSmall.png\"></head><body bgcolor=\"black\" text=\"white\" alink=\"red\" link=\"blue\" vlink=\"purple\">" + |
241 | "404 error, can't find the " + reqpath + " page.<p> </p></body></html>"; | 241 | "404 error, can't find the " + reqpath + " page.<p> </p></body></html>"; |
242 | return reply; | 242 | return reply; |
243 | } | 243 | } |
@@ -398,7 +398,7 @@ namespace OpenSim.Server.Handlers.Web | |||
398 | m_log.ErrorFormat("[WEB SERVICE]: Unable to read {0}.", reqpath); | 398 | m_log.ErrorFormat("[WEB SERVICE]: Unable to read {0}.", reqpath); |
399 | reply["int_response_code"] = 404; | 399 | reply["int_response_code"] = 404; |
400 | reply["content_type"] = "text/html"; | 400 | reply["content_type"] = "text/html"; |
401 | reply["str_response_string"] = "<html><title>404 Unknown page</title><head></head><body bgcolor=\"black\" text=\"white\" alink=\"red\" link=\"blue\" vlink=\"purple\">" + | 401 | reply["str_response_string"] = "<html><title>404 Unknown page</title><head><link rel=\"shortcut icon\" href=\"SledjHamrIconSmall.png\"></head><body bgcolor=\"black\" text=\"white\" alink=\"red\" link=\"blue\" vlink=\"purple\">" + |
402 | "404 error, can't find the " + reqpath + " page.<p> </p></body></html>"; | 402 | "404 error, can't find the " + reqpath + " page.<p> </p></body></html>"; |
403 | } | 403 | } |
404 | } | 404 | } |
@@ -519,7 +519,7 @@ namespace OpenSim.Server.Handlers.Web | |||
519 | List< Hashtable > rows = m_database.Select("UserAccounts", | 519 | List< Hashtable > rows = m_database.Select("UserAccounts", |
520 | "CONCAT(FirstName,' ',LastName) as Name,UserTitle as Title,UserLevel as Level,UserFlags as Flags,PrincipalID as UUID", | 520 | "CONCAT(FirstName,' ',LastName) as Name,UserTitle as Title,UserLevel as Level,UserFlags as Flags,PrincipalID as UUID", |
521 | "", "Name"); | 521 | "", "Name"); |
522 | reply["str_response_string"] = "<html><title>member accounts</title><head></head><body bgcolor=\"black\" text=\"white\" alink=\"red\" link=\"blue\" vlink=\"purple\">" + | 522 | reply["str_response_string"] = "<html><title>member accounts</title><head><link rel=\"shortcut icon\" href=\"SledjHamrIconSmall.png\"></head><body bgcolor=\"black\" text=\"white\" alink=\"red\" link=\"blue\" vlink=\"purple\">" + |
523 | table(rows, new string[5] {"Name", "Title", "Level", "Flags", "UUID"}, "member accounts", | 523 | table(rows, new string[5] {"Name", "Title", "Level", "Flags", "UUID"}, "member accounts", |
524 | "account.html?doit=edit&token=" + fields["toke_n_munchie"].ToString(), "UUID") + "<p>" + button("my account") + "</p></body></html>"; | 524 | "account.html?doit=edit&token=" + fields["toke_n_munchie"].ToString(), "UUID") + "<p>" + button("my account") + "</p></body></html>"; |
525 | } | 525 | } |
@@ -539,7 +539,7 @@ namespace OpenSim.Server.Handlers.Web | |||
539 | m_log.ErrorFormat("[WEB SERVICE]: No such POST target {0}.", path); | 539 | m_log.ErrorFormat("[WEB SERVICE]: No such POST target {0}.", path); |
540 | reply["int_response_code"] = 404; | 540 | reply["int_response_code"] = 404; |
541 | reply["content_type"] = "text/html"; | 541 | reply["content_type"] = "text/html"; |
542 | reply["str_response_string"] = "<html><title>404 Unknown page</title><head></head><body bgcolor=\"black\" text=\"white\" alink=\"red\" link=\"blue\" vlink=\"purple\">" + | 542 | reply["str_response_string"] = "<html><title>404 Unknown page</title><head><link rel=\"shortcut icon\" href=\"SledjHamrIconSmall.png\"></head><body bgcolor=\"black\" text=\"white\" alink=\"red\" link=\"blue\" vlink=\"purple\">" + |
543 | "404 error, can't find the " + reqpath + " page.<p> </p></body></html>"; | 543 | "404 error, can't find the " + reqpath + " page.<p> </p></body></html>"; |
544 | // } | 544 | // } |
545 | } | 545 | } |
@@ -548,7 +548,7 @@ namespace OpenSim.Server.Handlers.Web | |||
548 | m_log.ErrorFormat("[WEB SERVICE]: UNKNOWN method {0} path {1}.", method, reqpath); | 548 | m_log.ErrorFormat("[WEB SERVICE]: UNKNOWN method {0} path {1}.", method, reqpath); |
549 | reply["int_response_code"] = 404; | 549 | reply["int_response_code"] = 404; |
550 | reply["content_type"] = "text/html"; | 550 | reply["content_type"] = "text/html"; |
551 | reply["str_response_string"] = "<html><title>Unknown method</title><head></head><body bgcolor=\"black\" text=\"white\" alink=\"red\" link=\"blue\" vlink=\"purple\">" + | 551 | reply["str_response_string"] = "<html><title>Unknown method</title><head><link rel=\"shortcut icon\" href=\"SledjHamrIconSmall.png\"></head><body bgcolor=\"black\" text=\"white\" alink=\"red\" link=\"blue\" vlink=\"purple\">" + |
552 | "HUH! For " + reqpath + " page.<p> </p></body></html>"; | 552 | "HUH! For " + reqpath + " page.<p> </p></body></html>"; |
553 | } | 553 | } |
554 | 554 | ||