aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Cache/AssetTransactions.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Default inventory permissions patch (#444), courtesy of alex_carnell -- ↵Adam Frisby2008-02-041-0/+1
| | | | thanks!
* * Mother of all commits:Adam Frisby2008-01-151-11/+11
| | | | | | | * 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.
* dump_assets_to_file=true will now cause the asset to go into a UserAssets ↵Brian McBee2008-01-091-3/+16
| | | | subdirectory of bin instead of cluttering up your bin directory (Thanks CharlieO!)
* * Optimized usingslbsa712007-12-271-2/+4
| | | | | | | * shortened references * Removed redundant 'this' * Normalized EOF
* Added patch from Johan. First attempt to solve the LibSL.Packet GC problem. ↵Jeff Ames2007-12-201-2/+2
| | | | Works with LibSL rev>1532
* more work on texture downloading.MW2007-12-101-61/+66
| | | | | | | Refractored the TextureDownloadModule (but currently to make debugging easier, it is running as a non shared module, so this results in a instance of this module being created for each region (and a extra thread per region), this will be changed back soon. Removed the old texture handling/sending code from AssetCache. A few other small changes/fixes.
* saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames2007-12-101-2/+2
| | | | notice of doom
* This is a simple patch which just renames an IClientAPI method toSean Dague2007-12-031-1/+1
| | | | | | | | | SendInventoryItemCreateUpdate() in order to reflect the actual packet it sends (UpdateCreateInventoryItem). From Justin Casey (IBM)
* Very partial Avatar Appearance (ie, clothes/body parts) "storage". In ↵MW2007-12-021-1/+1
| | | | | | | | standalone mode it will mean that when you log off and log back on ,as long as the region server hasn't been restarted , your avatar will start with wearing the clothes that it wore on log off. In grid mode its even more limited in that wearing/removing clothes/body parts are only stored in the region server instance you are one. so if you are in a different region to your login region (which are on different region server instances), and then change clothes, those changes won't be remembered. So as said, its very limited but is a small step towards having proper appearance persist. Just need to store this data out to a database.
* * Refactored IClientAPI.OutPacket to require a second mandatory parameter. ↵Teravus Ovares2007-11-181-3/+3
| | | | This parameter has an enum:int ThrottleOutPacketType and contains types; Resend, Land, Wind, Cloud, Task, Texture, and Asset.
* added .dat extension to dumped asset filesJeff Ames2007-10-311-1/+1
|
* * Optimized usingslbsa712007-10-301-97/+102
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW2007-10-291-2/+1
| | | | | | | Have flattened the OpenSim.Framework project/namespace. The problem is that the namespace is still wrong as its "OpenSim.Framework" while the directory is "OpenSim\Framework\General" , so we need to decide if we change the directory or correct the namespace. Note this has lead to a big flat project, but I think a lot of the files we most likely don't even use any longer. And others belong in other projects/namespaces anyway.
* * Added 'Jim' and 'Goblin' shapes; not available in inventory yet thoughlbsa712007-10-271-1/+3
|
* * Added prototypical AvatarFactory module interface to load avatar parameterslbsa712007-10-261-9/+19
| | | | | | | * Added dump_assets_to_file option to enable asset dumping for debug * normalized some namespaces * InventoryFolder renamed to InventoryFolderImpl to
* == The "right name and place" commit ==lbsa712007-10-051-1/+1
| | | | | | | | | * Moved InventoryData to Framework.Types/InventoryItemBase.cs * Moved UserData to Framework.Interfaces/IUserData.cs * Moved UserProfileData to Framework/Types/UserProfileData.cs * Deleted ass-backwards Framework dependency on Framework.Data (now it's the other way round) * Changed some namespaces to reflect file structure
* * Started major restructusing of comms to prepare for better grid and region ↵lbsa712007-09-241-1/+1
| | | | | | | | functionality * Working towards one shared set of services * Killed off two projects with very little functionality
* mass update of urls in source code to new websiteSean Dague2007-09-101-1/+1
|
* Another attempt to fix the image sending bug (next week, I intend to rewrite ↵MW2007-08-261-1/+8
| | | | | | | | the assetcache and asset server). Attempt to fix bug # 326. (crashing when using save-xml and hollow prims) Attempt to fix bug # 328 (limit of 50 items in a folder)
* Can now turn on/off server side permission checking (on prim editing etc) ↵MW2007-08-211-0/+19
| | | | | | | from the opensim.ini file. Just add a line to the Startup section like : serverside_object_permissions = true Changes /editing that are made to clothing/ body parts in your inventory should now be saved between logins/ restarts.
* Sqlite datastore should now save the textures and extraparams data (used by ↵MW2007-08-191-2/+2
| | | | | | | | | | | | | sculpties) correctly. [Really need to add a ExtraParams field to the sqlite database though, but for now I have combined their data so that we don't lose backward compatibility, know a couple of people have been using the datastore already]. Now have a rough day/night cycle (the movement of the sun needs to be made smoother but for now it is better than we had I think). Added dalien's patch (issue 294) for saving and loading prims to a xml file (think he will be modifying these to be import/export functions and maybe writing a xml datastore for backups). Some preliminary work on task inventory (ie object's/prim's inventory). Added place holder data for AvatarProperties (ie a avatar's profile). Should we store this sort of data on the user server or have another server for it (a normal webserver should work). Added a few more method to IClientAPI. Sure there is something I'm forgeting.
* Can now set the plugins for standalone mode's Inventory database (default ↵MW2007-08-161-1/+6
| | | | sqlite) and for its user database (default DB4o). Currently changing the user plugin to MySql should work (if you have MySql setup (should be same as for grid mode). There is also a MySql provider for the inventory but not 100% certain if that is finished and functional (will need to check with Adam on that).
* More work on inventory, can now create other inventory types, like Clothes ↵MW2007-08-151-6/+108
| | | | and body parts. [Note while you can edit these, at the moment your changes won't be saved between restarts. This will be fixed very soon.]
* preliminary support for editing notecards and scripts. MW2007-08-141-2/+2
| | | | | Although there seems to sometimes be a problem of when you login again, old notecards and scripts will have their permissions messed up and you won't be able to even view their text. This seems to be related to the client's cache, and if you clear your client's cache, on the next login they should be fine again. [I have a couple of ideas about what might be causing this so hopefully will have it fixed soon.]
* Start of inventory items, when you upload a texture the data will now be ↵MW2007-08-141-2/+2
| | | | | | | stored in the inventory database and you will still have that texture in inventory on later logins (Again only in standalone mode with authentication.) Also there might be some problems if you upload textures in other regions to the start one (due to us not updating the CAPS url properly).
* Start of the OpenSim library , for now only contains a few textures. MW2007-07-251-274/+274
|
* Couple of small changesMW2007-07-221-2/+2
|
* Think I've recovered my deleted files, so hopefully it works now. MW2007-07-221-0/+275