mirror of
https://github.com/opensim/opensim.git
synced 2026-06-01 15:35:44 +08:00
* Adds a prototype web stats module which is disabled by default. It's functional with one report right now, however, the database structure may change, so I don't recommend enabling this to keep actual stats right now. I'll let you know when it's safe. * Adds Prototype for ajaxy web content * removed a warning or two.
11 lines
226 B
C#
11 lines
226 B
C#
using System.Collections;
|
|
|
|
namespace OpenSim.Region.UserStatistics
|
|
{
|
|
public interface IStatsController
|
|
{
|
|
Hashtable ProcessModel(Hashtable pParams);
|
|
string RenderView(Hashtable pModelResult);
|
|
}
|
|
}
|