aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework (unfollow)
Commit message (Collapse)AuthorFilesLines
2007-09-11Another attempt at fixing the disappearing estate_settings.xml file.Brian McBee1-25/+24
2007-09-11Fix for setting region through property. This should allowSean Dague1-2/+2
mysql to work again in grid mode for user storage.
2007-09-11* minor refactoringslbsa711-2/+0
2007-09-11move the locks closer to the data, sqlite for assets now works like a champSean Dague2-40/+37
2007-09-11add DeleteAssetSean Dague1-10/+14
this also moves commit points around a bit for debuging, though this will change back now the MW has worked out synchronization
2007-09-11Trying some locks on asset database access. MW1-10/+21
2007-09-10added some debugging for tracing where asset code isn't working with sqliteSean Dague4-305/+328
2007-09-10mass update of urls in source code to new websiteSean Dague79-79/+79
2007-09-10A couple of fixes to make sure db4o gets set as the default asset database. ↵MW2-0/+2
Also added a couple of console output lines to try to make it easier to tell which asset storage system is in use.
2007-09-10hooked up sdague new sqlite asset database provider to the old asset system. ↵MW7-14/+346
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-10* Fixed: Accessing xmlrpc with invalid xml data would crash the sim.lbsa711-17/+31
* Ignored some bins and gens
2007-09-09Little green men (aka dots on minimap). Thanks to bushing for Dalien Talbot2-0/+2
pointing out that it is done by CoarseLocationUpdatePacket.
2007-09-08A small try/catch wrapper to prevent the CLI errors from nuking the sim.Dalien Talbot1-1/+5
Now will just print the backtrace on the screen and continue.
2007-09-08Partial fix for the "avatars permanently facing east" - now the rotationDalien Talbot2-2/+2
is set correctly, but only with the movement of the avatar. The in-place rotation updates need a little bit of more thought, and will be in a separate commit.
2007-09-08Converted the LSL scripting engine into a IRegionModule, so now all ↵MW1-7/+7
"modules" share a common base interface and are loaded from the single loader. (It seems to work fine, but I have left the old scriptengine loader, incase we have to change back). Removed the reference to OpenJpeg in the DynamicTextureModule, to see if that was causing the build problem someone is having. Added a Temporary fix for the "existing connection was forcibly closed by the remote host" exception on windows when a user logs out of a multiregion instance. Some early work to prepare for improving the way clients are updated (about prims etc).
2007-09-07added SQLiteAssetData class first pass. This should work,Sean Dague1-0/+237
but it will current store local and temporary assets as well. Will fix that later.
2007-09-07factor out common methods to SQLiteBaseSean Dague2-169/+231
2007-09-05Added "Local" and "Temporary" Fields to the AssetBase class.MW1-0/+2
2007-09-04Some work on Module loading/management.MW1-1/+6
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-31Added a Debug method to the Console/log class that has the Conditional ↵MW1-0/+15
attribute (set to "DEBUG"), so we can use that for writing extra debug info to the console. [for anyone who doesn't know about the Conditional attribute, it is a attribute that can be set on a method, and then any call to that method will on be compiled if the terms of that condition are met, ie is this case only if "DEBUG" is true. So its a cleaner implementation of the #if #endif directives]. A few other minor changes.
2007-08-30remove debugging statementSean Dague1-1/+1
2007-08-30Added some place holder classes for various modules.MW2-36/+40
Some work on the asset cache, can people please test this. including on one of the public systems so we can see if it causes problems with multiple users.
2007-08-29Various small changes (some likely to be removed again soon)MW1-1/+1
2007-08-29Attempt to fix bug on linux where estate_settings.xml gets wiped. Brian McBee1-1/+4
2007-08-28Fixed the problem of uploaded animations not showing up in inventory [Mantis ↵MW1-1/+1
number 338]. They should now show up in inventory and play locally should work. But Play in world doesn't seem to work yet.
2007-08-28some changes which get us closer to Sqlite storage for usersSean Dague3-6/+16
2007-08-28Ensure that UserProfileData doesn't pass down null values. Sean Dague2-22/+32
These cause some issues with the ADO.NET mapping
2007-08-28sqlite is storing now, uint64 makes things "interesting".Sean Dague1-7/+8
however lookup isn't working
2007-08-28added some more types that will be neededSean Dague1-2/+14
2007-08-28sqlite user datastore "should" be functionally completeSean Dague1-115/+74
with this checkin, though it's not tested. Will do that tommorrow.
2007-08-28reverting to old case sensitive username behavior. As sdague pointed out,we ↵Brian McBee1-1/+1
are moving away from db4o to sql, and this won't work.
2007-08-28Avatar login names are no longer case sensitiveBrian McBee1-1/+1
2007-08-27first pass implementation of sqlite storage for user data. ThisSean Dague1-0/+705
isn't functional enough to use yet, but does compile. Should be ready for testing in another day or so.
2007-08-27Deleted a few old files that are no longer used.MW6-320/+397
Deleted the GridInterfaces projects, and for now moved the old local asset server into Framework.Communications, as we prepare to rewrite the asset cache and asset server. Deleted Framework.manager as I am sure this is no longer in use.
2007-08-27Stopped EntityBase from implementing IScriptHost, as don't think it should, ↵MW1-1/+1
multiple objects are based on entitybase and they all don't want the baggage from IScriptHost. SceneObjectPart already implements it anyway. Added llGetOwner function, and tested the ll functions that I added in last commit.
2007-08-27Another small tweak to image sending.MW1-1/+2
Implemented a few ll Functions, llSetObjectName llGetObjectName, llLoadURL (all currently untested).
2007-08-27Tweaks to assetcache to make texture downloading better (I hope)Brian McBee1-13/+14
2007-08-26See if this fixes the 0x0 texture size problems, and speeds up texture ↵MW1-2/+3
downloads in general a little bit.
2007-08-26Another attempt to fix the image sending bug (next week, I intend to rewrite ↵MW6-37/+84
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)
2007-08-25Applied dalien's libsl login patch (should now allow libsl clients to once ↵MW1-4/+4
again login to opensim) [Seems I was the one who broke it...sorry ]
2007-08-25Second attempt to commit : Test to see if this change improves or makes ↵MW1-1/+1
worse the texture sending bug
2007-08-24it helps to actually call TestTables to get the new tables createdSean Dague1-0/+2
2007-08-24updated SQLite Inventory to newer model data definition,Sean Dague1-485/+644
and add automatic generating of the inventory table
2007-08-22Added OnRemoveScript(uint localID, LLUUID itemID) event , trigged when a ↵MW2-0/+3
script in a primitive is deleted.
2007-08-22Made SceneObjectGroup.GetChildPrim() public, for now so that script engine ↵MW2-0/+3
can get ref to the SceneObjectPart/ IScriptHost.
2007-08-22A little bit of cleaning up.MW1-1/+1
2007-08-22Start of Task Inventory (ie prim's inventory). For now, you can only move ↵MW2-0/+3
scripts into a prim (from your user inventory) and although the script will now show up in the prims inventory, you can't make any changes to it (or delete it). Also a prim's inventory is currently not saved between restarts.
2007-08-22Fix for un-encrypted master avatar password in user databaseBrian McBee1-1/+2
2007-08-21Added OnRezScript event to Scene.EventManager.Which the script engine should ↵MW2-0/+3
subscribe to. This is triggered whenever a script is moved into a primitive (and includes the localid of the prim and the script text as params) . Currently though the script item isn't deleted from a users inventory, nor does it actually show up in the objects inventory (this will be fixed soon.) So that means that it isn't currently possible to edit a script (or delete it) once it has been added to a primitive.
2007-08-21Can now turn on/off server side permission checking (on prim editing etc) ↵MW5-11/+26
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.