aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/XferModule.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-02-20Minor cleanup.Jeff Ames1-1/+1
2008-02-06* Chasing down memory leak where memory used by a client is not returned on ↵Justin Clarke Casey1-7/+31
client logout * This code may or may not be on the right track, but I want to save my work so far.
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-10-30* Optimized usingslbsa711-4/+3
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW1-0/+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.
2007-10-19changes to pass nini config object to the modules that getSean Dague1-201/+202
loaded so that they may read out any bits they are interested in
2007-10-15* Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa711-1/+29
2007-10-10* Gave ModuleLoader some good lovin'lbsa711-172/+172
* Introduced ModuleLoader.PickupModules that currently picks up IRegionModule:s from /bin * Made LogBase thread-safe (or at least not thread-ignorant) * Ignored some genned files
2007-10-05getting all our line endings consistant againSean Dague1-11/+11
2007-09-19* Modernized ScriptManager to new interface-based module calls.lbsa711-24/+17
* 'remove redundant this qualifier' ftw
2007-09-17fixing me some line endingsSean Dague1-180/+180
2007-09-10hooked up sdague new sqlite asset database provider to the old asset system. ↵MW1-2/+2
So we can still use sqlite for assets while we wait for the rest of the new asset system to be wrote. Needs more testing, so if it causes problems will have to swap back to db4o.
2007-09-04Some work on Module loading/management.MW1-0/+5
Some more modules templates classes (hoping that someone will pick some of these and work on implementing them). Early version of the "Dynamic Texture Module", although currently there are no render modules included (so not really functional without them). Added osSetDynamicTextureURL script function, for attaching a dynamic texture to a prim. Some work on the console command handling. Added "change-region <regionname>" and "exit-region" so that after the use of change-region, the commands entered will apply to that region only. Then use exit-region to return to the top level (so commands then function as they did before and either apply to all regions or to the first region) (Note: this hasn't been tested very much)
2007-08-29Various small changes (some likely to be removed again soon)MW1-1/+1
2007-08-28Moved XferModule to OpenSim.Region.Environment.Modules namespace/directory.MW1-1/+1
2007-08-28Start of trying to make Region/Scene more modular. MW1-3/+38
Added preliminary IRegionModule interface. Also have a work in progress way of Modules registering optional API methods (kind of like Apache optional functions). But there must be a cleaner/nicer way in c# of doing these than the current way. Added three work in progress modules: ChatModule (simple handles in world chat, but by moving this to a module, we could support other types of chat modules, ie like a irc - opensim bridge module. ) , AvatarProfilesModule and XferModule. Moved most of the code from Scene.ModifyTerrain() into the BasicTerrain library, as the start of trying to make that more modular. Stopped Child agents showing up as part of the "show users" command.
2007-08-22A little bit of cleaning up.MW1-2/+0
2007-08-22Fixed typo.MW1-2/+2
2007-08-22Added forgotten file.MW1-0/+142
Made a change to the Scene.EventManager OnRezScript event, it now includes the itemID as a param. This uuid is unique to each instance of a script, so can be used for tracking changes/editing, stopping and deleting a script.