diff options
author | BlueWall | 2012-01-19 14:21:12 -0500 |
---|---|---|
committer | BlueWall | 2012-01-19 14:21:12 -0500 |
commit | 8f871cca10274325bf90054d75019a865fc50216 (patch) | |
tree | 66d6869334393bc96882c4c421cfaeb80d5abbb5 /OpenSim/Region/ScriptEngine/Shared/Api/Runtime | |
parent | Change URI to lowercase to match existing (diff) | |
download | opensim-SC-8f871cca10274325bf90054d75019a865fc50216.zip opensim-SC-8f871cca10274325bf90054d75019a865fc50216.tar.gz opensim-SC-8f871cca10274325bf90054d75019a865fc50216.tar.bz2 opensim-SC-8f871cca10274325bf90054d75019a865fc50216.tar.xz |
Add osGetGridHomeURI function
Add osGetHomeURI function to the family of osGetGrid* functions. Returns the SRV_HomeURI setting from the [LoginService] configuration.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs index fc83786..02efecf 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs | |||
@@ -452,6 +452,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
452 | return m_OSSL_Functions.osGetGridLoginURI(); | 452 | return m_OSSL_Functions.osGetGridLoginURI(); |
453 | } | 453 | } |
454 | 454 | ||
455 | public string osGetGridHomeURI() | ||
456 | { | ||
457 | return m_OSSL_Functions.osGetGridHomeURI(); | ||
458 | } | ||
459 | |||
455 | public string osGetGridCustom(string key) | 460 | public string osGetGridCustom(string key) |
456 | { | 461 | { |
457 | return m_OSSL_Functions.osGetGridCustom(key); | 462 | return m_OSSL_Functions.osGetGridCustom(key); |