aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/RestClient (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Formatting cleanup.Jeff Ames2008-03-182-55/+51
|
* * Add comments and slight corrections to ClientView.AgentTextureCachedJustin Clarke Casey2008-03-121-2/+2
| | | | | | * Reduce 'asset not found' console debug spam
* Clean up logging calls using String.Format explicitlyJeff Ames2008-02-101-3/+3
|
* Converted logging to use log4net.Jeff Ames2008-02-051-6/+8
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* First part of avatar persistence, currently only really works in standalone ↵MW2008-02-041-0/+1
| | | | | | | | | mode (with accounts_authenticate set to true), it also only currently has a mysql database connector. (sqlite one will follow soon). It also uses the tribalmedia database system, so this needs checking to see if the old problems with mono have been fixed. To use, see the appearance section in opensim.ini.example, set "persist = true", then add the correct connection string for your database.(see mysql-AvatarAppearance.sql in share folder for a example of the table mysql table structure). This could possible be used in a very small grid, but would mean each region server would need to connect to the same mysql database. But the work to move the code to one of the grid servers shouldn't be too much.
* * Mother of all commits:Adam Frisby2008-01-151-1/+1
| | | | | | | * Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
* * Optimized usingslbsa712007-12-271-8/+8
| | | | | | | * shortened references * Removed redundant 'this' * Normalized EOF
* added copyright noticesJeff Ames2007-12-112-0/+56
|
* minor meaningless changesJeff Ames2007-12-031-2/+2
|
* debug tracing for asset server hangsSean Dague2007-11-011-2/+10
|
* * Optimized usingslbsa712007-10-302-49/+52
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* Very early first implementation of grid based assets.Tleiades Hax2007-10-262-16/+87
| | | | | Run this on a major grid, and weep
* fix line endingsSean Dague2007-10-252-491/+491
|
* Created a generic RESTClient component, which simplifies querying for ↵Tleiades Hax2007-10-252-0/+491
resources from REST based web-services. Currently it supports a barebones scheme for specifying the path of the resource and querying asynchroneously. POST method is still wacky and a good solid scheme for handling timeout still remain.