aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/RestClient (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-05-01* Removing duplicate files that somehow got undeleted from TortoiseSVN. Fixed.Adam Frisby2-578/+0
2008-04-30* Spring cleaned a bunch of '//TODO: unused' marked functions.Adam Frisby1-54/+0
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby1-2/+3
(this took a while to run).
2008-03-25Comment out unused private methods.Jeff Ames1-49/+52
2008-03-18Formatting cleanup.Jeff Ames2-55/+51
2008-03-12* Add comments and slight corrections to ClientView.AgentTextureCachedJustin Clarke Casey1-2/+2
* Reduce 'asset not found' console debug spam
2008-02-10Clean up logging calls using String.Format explicitlyJeff Ames1-3/+3
2008-02-05Converted logging to use log4net.Jeff Ames1-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.
2008-02-04First part of avatar persistence, currently only really works in standalone ↵MW1-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.
2008-01-15* Mother of all commits:Adam Frisby1-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.
2007-12-27* Optimized usingslbsa711-8/+8
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-11added copyright noticesJeff Ames2-0/+56
2007-12-03minor meaningless changesJeff Ames1-2/+2
2007-11-01debug tracing for asset server hangsSean Dague1-2/+10
2007-10-30* Optimized usingslbsa712-49/+52
* Shortened type references * Removed redundant 'this' qualifier
2007-10-26Very early first implementation of grid based assets.Tleiades Hax2-16/+87
Run this on a major grid, and weep
2007-10-25fix line endingsSean Dague2-491/+491
2007-10-25Created a generic RESTClient component, which simplifies querying for ↵Tleiades Hax2-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.