diff options
author | lbsa71 | 2007-03-29 19:22:01 +0000 |
---|---|---|
committer | lbsa71 | 2007-03-29 19:22:01 +0000 |
commit | 30c5be370489f9620e0f199526c80f5c34f16faa (patch) | |
tree | c56a7ec877a9f5f935b25c3c4703b6d8bfcde662 /Servers/IRestHandler.cs | |
parent | * RestMethod now uses same pattern as XmlRpcMethod (diff) | |
download | opensim-SC_OLD-30c5be370489f9620e0f199526c80f5c34f16faa.zip opensim-SC_OLD-30c5be370489f9620e0f199526c80f5c34f16faa.tar.gz opensim-SC_OLD-30c5be370489f9620e0f199526c80f5c34f16faa.tar.bz2 opensim-SC_OLD-30c5be370489f9620e0f199526c80f5c34f16faa.tar.xz |
* Now the rest handlers try to match path as close as possibly, so it's possible to add handlers for just a beginning of a path.
Diffstat (limited to '')
-rw-r--r-- | Servers/IRestHandler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Servers/IRestHandler.cs b/Servers/IRestHandler.cs index deb77d8..46459ff 100644 --- a/Servers/IRestHandler.cs +++ b/Servers/IRestHandler.cs | |||
@@ -4,5 +4,5 @@ using System.Text; | |||
4 | 4 | ||
5 | namespace OpenSim.CAPS | 5 | namespace OpenSim.CAPS |
6 | { | 6 | { |
7 | public delegate string RestMethod( string request ); | 7 | public delegate string RestMethod( string request, string path ); |
8 | } | 8 | } |