aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSimBase.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-10-07 00:30:35 +0100
committerJustin Clark-Casey (justincc)2011-10-07 00:30:35 +0100
commit1f78dc65041729567edc411a3e63dd9a32a268a3 (patch)
treec32c976ab9088dff3804fb107ad2b3168e728c4a /OpenSim/Region/Application/OpenSimBase.cs
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-1f78dc65041729567edc411a3e63dd9a32a268a3.zip
opensim-SC_OLD-1f78dc65041729567edc411a3e63dd9a32a268a3.tar.gz
opensim-SC_OLD-1f78dc65041729567edc411a3e63dd9a32a268a3.tar.bz2
opensim-SC_OLD-1f78dc65041729567edc411a3e63dd9a32a268a3.tar.xz
remove the pointless slashes on the end of the (5!) different server stat retrieval mechanisms.
Original request URLs that end with / will still work, but this will allow one to type /simstatus as well as /simstatus/ Can't do this with webstats yet since it does insane things to the path.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index 6fba71e..e867bc2 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -728,7 +728,7 @@ namespace OpenSim
728 728
729 public string Path 729 public string Path
730 { 730 {
731 get { return "/simstatus/"; } 731 get { return "/simstatus"; }
732 } 732 }
733 } 733 }
734 734
@@ -766,7 +766,7 @@ namespace OpenSim
766 public string Path 766 public string Path
767 { 767 {
768 // This is for the OpenSimulator instance and is the osSecret hashed 768 // This is for the OpenSimulator instance and is the osSecret hashed
769 get { return "/" + osXStatsURI + "/"; } 769 get { return "/" + osXStatsURI; }
770 } 770 }
771 } 771 }
772 772
@@ -807,7 +807,7 @@ namespace OpenSim
807 public string Path 807 public string Path
808 { 808 {
809 // This is for the OpenSimulator instance and is the user provided URI 809 // This is for the OpenSimulator instance and is the user provided URI
810 get { return "/" + osUXStatsURI + "/"; } 810 get { return "/" + osUXStatsURI; }
811 } 811 }
812 } 812 }
813 813