aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/Agent (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* * refactor: do a tiny bit of cleanupJustin Clarke Casey2008-09-261-40/+46
|
* * refactor: split out AssetXferUploaderJustin Clarke Casey2008-09-263-285/+312
|
* * refactor: split out AgentAssetTransactionsManagerJustin Clarke Casey2008-09-262-192/+227
|
* * Implment task inventory item asset update for the old non CAPS transaction ↵Justin Clarke Casey2008-09-262-30/+75
| | | | | | | | | | | system * This means that saving notecards in prim inventories should now work. * Not the nicest code in the world - the transactions system is pretty fugly right now * PLEASE NOTE: Currently, the prim will not repersist until up to 15 seconds after it is unselected. * What we really need is a proper mechanism so that any prim updates still waiting when the simulator is quit are performed before exit.
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-068-66/+66
| | | | | | | * This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
* Change to no longer check funds on temp texture uploads.Melanie Thielker2008-08-231-2/+3
| | | | | | This fixes the "no funds" message on rebake.
* Some complex re-ordering to make prebuild do what needed to be done.Melanie Thielker2008-08-231-0/+1
| | | | | | | | | It is now possible to use module interfaces without referencing Scene. Place those interfaces in OpenSim/Region/Interfaces. They may not use any refs from OpenSim.Region.Environment as parameters. This resolves a circular library ref introduced in r5949
* Patch #9171Melanie Thielker2008-08-231-1/+18
| | | | | | | Disallow bulk uploads if money module is present and upload cost is set and the user hasn't got sufficient funds.
* Formatting cleanup.Jeff Ames2008-08-181-4/+4
|
* * Drop InvType from the assets table since it is no longer usedJustin Clarke Casey2008-07-021-3/+0
| | | | | | | | * Migration should be automatic on sqlite and mysql * Migration is not automatic on mssql, you will need to drop the invType column manually * Migration should be fine, but as for any db change, I would recommend making sure you have backups before moving past this revision
* more warnings to go.Dr Scofield2008-06-272-10/+22
|
* Clean out some crufty in AvatarFactoryModule Sean Dague2008-05-211-0/+2
| | | | | | | | | | Fix RequestUpdateInventoryItem so that asset changes generate a new asset, which is needed for editing appearance to do the right thing. Persistant appearance seems to work after this, except you need to rebake textures some times.
* Formatting cleanup.Jeff Ames2008-05-171-1/+1
|
* * Applying patch in mantis 0001293: [PATCH] Fix a bug that corrupts uploaded ↵Teravus Ovares2008-05-161-3/+4
| | | | assets on disk write from Melane. Thanks Melanie!
* * Eliminate occurences of "Got a texture uuid ... with no sender object to ↵Justin Clarke Casey2008-05-161-2/+16
| | | | handle it..." by properly dealing with the situation where a client still has queued texture requests when it logs out
* Formatting cleanup.Jeff Ames2008-05-168-27/+27
|
* * Start recording as a statistic the number of times we start blocking ↵Justin Clarke Casey2008-05-141-2/+4
| | | | | | | | repetitive client requests for the same missing texture * This is to maintain some visibility on the problem, since I removed the intentionally irritating log messages for this
* Formatting cleanup.Jeff Ames2008-05-141-1/+1
|
* * Two more OutPacket refactors. TextureSender.Teravus Ovares2008-05-101-21/+12
| | | | | * The split image packet sender doesn't like to be refactored (images don't load after it's been refactored), so left that as is for the moment.
* Refactored out a few warnings related to Adam's bane OutPacketTeravus Ovares2008-05-101-19/+8
|
* * Experiment in Zerocoding.Teravus Ovares2008-05-102-0/+6
|
* * Removing console notifications of missing texture request sending (which ↵Justin Clarke Casey2008-05-091-4/+4
| | | | | | | | ironically, was disabled, though it wasn't making much difference). * These messages keep getting confused with other problems - just going to have to try to remember to add these to stats or something so at least they don't completely disappear
* * Refactor: Break out permissions code into a separate region PermissionsModuleJustin Clarke Casey2008-05-051-4/+0
|
* * Refactor: remove redundant userId parameter from UpdateItem() and DeleteItem()Justin Clarke Casey2008-05-031-1/+1
| | | | | | * Put warning in remove folder method about non implementation (not that this is used anyway - may be legacy)
* * Refactor: remove pointless agentId parameter from CachedUserInfo.AddItem()Justin Clarke Casey2008-05-031-1/+1
| | | | | | * Remove old framework asset transactions files which were region modularized
* * Rolled back a few changes.Adam Frisby2008-05-017-43/+57
|
* * Spring cleaning on Region.Environment. Adam Frisby2008-05-017-57/+43
| | | | | | | * Converted a large number of read-only fields to be actually, readonly. * Reformatted code sections. * Removed redundant code.
* Update svn properties. Minor formatting cleanup.Jeff Ames2008-05-018-1947/+1947
|
* * Spring cleaned a bunch of '//TODO: unused' marked functions.Adam Frisby2008-04-301-114/+0
|
* * Cruft removal step #1. Cleaning Modules directory.Adam Frisby2008-04-308-249/+287
|
* * Refactored Environment/Modules directory - modules now reside in their own ↵Adam Frisby2008-04-308-0/+2031
directory with any associated module-specific classes. * Each module directory is currently inside one of the following category folders: Agent (Anything relating to do with Client<->Server communications.), Avatar (Anything to do with the avatar or presence inworld), Framework (Classes modules can use), Grid (Grid traffic, new OGS2 grid comms), Scripting (Scripting functions, etc), World (The enrivonment/scene, IE Sun/Tree modules.) * This should be moved into a seperate project file.