remove extra '/' in assets url

avinationmerge
UbitUmarov 2012-09-06 17:18:34 +01:00
parent c298ae9e75
commit 041fcd6a72
1 changed files with 13 additions and 6 deletions

View File

@ -181,7 +181,8 @@ namespace OpenSim.Services.Connectors
public AssetBase Get(string id)
{
string uri = MapServer(id) + "/assets/" + id;
// string uri = MapServer(id) + "/assets/" + id;
string uri = MapServer(id) + "assets/" + id;
AssetBase asset = null;
if (m_Cache != null)
@ -218,7 +219,8 @@ namespace OpenSim.Services.Connectors
return fullAsset.Metadata;
}
string uri = MapServer(id) + "/assets/" + id + "/metadata";
// string uri = MapServer(id) + "/assets/" + id + "/metadata";
string uri = MapServer(id) + "assets/" + id + "/metadata";
AssetMetadata asset = SynchronousRestObjectRequester.
MakeRequest<int, AssetMetadata>("GET", uri, 0);
@ -260,7 +262,8 @@ namespace OpenSim.Services.Connectors
public bool Get(string id, Object sender, AssetRetrieved handler)
{
string uri = MapServer(id) + "/assets/" + id;
// string uri = MapServer(id) + "/assets/" + id;
string uri = MapServer(id) + "assets/" + id;
AssetBase asset = null;
if (m_Cache != null)
@ -379,7 +382,9 @@ namespace OpenSim.Services.Connectors
return asset.ID;
}
string uri = MapServer(asset.FullID.ToString()) + "/assets/";
// string uri = MapServer(asset.FullID.ToString()) + "/assets/";
string uri = MapServer(asset.FullID.ToString()) + "assets/";
string newID = string.Empty;
try
@ -456,7 +461,8 @@ namespace OpenSim.Services.Connectors
}
asset.Data = data;
string uri = MapServer(id) + "/assets/" + id;
// string uri = MapServer(id) + "/assets/" + id;
string uri = MapServer(id) + "assets/" + id;
if (SynchronousRestObjectRequester.
MakeRequest<AssetBase, bool>("POST", uri, asset))
@ -471,7 +477,8 @@ namespace OpenSim.Services.Connectors
public bool Delete(string id)
{
string uri = MapServer(id) + "/assets/" + id;
// string uri = MapServer(id) + "/assets/" + id;
string uri = MapServer(id) + "assets/" + id;
if (SynchronousRestObjectRequester.
MakeRequest<int, bool>("DELETE", uri, 0))