aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/InterGrid (follow)
Commit message (Collapse)AuthorAgeFilesLines
* this is step 2 of 2 of the OpenSim.Region.Environment refactor.Dr Scofield2009-02-101-1273/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NOTHING has been deleted or moved off to forge at this point. what has happened is that OpenSim.Region.Environment.Modules has been split in two: - OpenSim.Region.CoreModules: all those modules that are either directly or indirectly referenced from other OpenSim packages, or that provide functionality that the OpenSim developer community considers core functionality: CoreModules/Agent/AssetTransaction CoreModules/Agent/Capabilities CoreModules/Agent/TextureDownload CoreModules/Agent/TextureSender CoreModules/Agent/TextureSender/Tests CoreModules/Agent/Xfer CoreModules/Avatar/AvatarFactory CoreModules/Avatar/Chat/ChatModule CoreModules/Avatar/Combat CoreModules/Avatar/Currency/SampleMoney CoreModules/Avatar/Dialog CoreModules/Avatar/Friends CoreModules/Avatar/Gestures CoreModules/Avatar/Groups CoreModules/Avatar/InstantMessage CoreModules/Avatar/Inventory CoreModules/Avatar/Inventory/Archiver CoreModules/Avatar/Inventory/Transfer CoreModules/Avatar/Lure CoreModules/Avatar/ObjectCaps CoreModules/Avatar/Profiles CoreModules/Communications/Local CoreModules/Communications/REST CoreModules/Framework/EventQueue CoreModules/Framework/InterfaceCommander CoreModules/Hypergrid CoreModules/InterGrid CoreModules/Scripting/DynamicTexture CoreModules/Scripting/EMailModules CoreModules/Scripting/HttpRequest CoreModules/Scripting/LoadImageURL CoreModules/Scripting/VectorRender CoreModules/Scripting/WorldComm CoreModules/Scripting/XMLRPC CoreModules/World/Archiver CoreModules/World/Archiver/Tests CoreModules/World/Estate CoreModules/World/Land CoreModules/World/Permissions CoreModules/World/Serialiser CoreModules/World/Sound CoreModules/World/Sun CoreModules/World/Terrain CoreModules/World/Terrain/DefaultEffects CoreModules/World/Terrain/DefaultEffects/bin CoreModules/World/Terrain/DefaultEffects/bin/Debug CoreModules/World/Terrain/Effects CoreModules/World/Terrain/FileLoaders CoreModules/World/Terrain/FloodBrushes CoreModules/World/Terrain/PaintBrushes CoreModules/World/Terrain/Tests CoreModules/World/Vegetation CoreModules/World/Wind CoreModules/World/WorldMap - OpenSim.Region.OptionalModules: all those modules that are not core modules: OptionalModules/Avatar/Chat/IRC-stuff OptionalModules/Avatar/Concierge OptionalModules/Avatar/Voice/AsterixVoice OptionalModules/Avatar/Voice/SIPVoice OptionalModules/ContentManagementSystem OptionalModules/Grid/Interregion OptionalModules/Python OptionalModules/SvnSerialiser OptionalModules/World/NPC OptionalModules/World/TreePopulator
* This changeset is the step 1 of 2 in refactoringDr Scofield2009-02-061-2/+2
| | | | | | | | | | | | | | | | | | | | OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
* * refactor: Extract caps related code from scene and put into a region moduleJustin Clarke Casey2009-01-211-4/+5
| | | | | | * No functional changes in this revision
* * Rename GetRandomCapsPath() to GetRandomCapsObjectPath() to fit in with ↵Justin Clarke Casey2009-01-061-1/+1
| | | | | | | | terminology used elsewhere * Last build break was probably a Bamboo failure - hopefully this should succeed
* * Move common string aggregation for caps seed path to a method in CapsUtilJustin Clarke Casey2009-01-061-2/+6
|
* * minor: Move GetRandomCapsPath() to a CapsUtil classJustin Clarke Casey2009-01-061-14/+11
|
* * refactor: call AddLLSDHandler directly via CommsManagerJustin Clarke Casey2009-01-061-3/+5
|
* * refactor: rename UserServiceAdmin to UserAdminServiceJustin Clarke Casey2008-11-281-1/+1
|
* * refactor: move CreateUser into UserServiceAdminJustin Clarke Casey2008-11-281-2/+4
|
* Mantis#2660. Thank you kindly, Ruud Lathrop for a patch that:Charles Krinke2008-11-231-1/+1
| | | | | | | | This patch adds the option of adding the email when you create a new user. This works in Gridmode as none Gridmode. This option is also added to RemoteAdminPlugin. With a new handler you can create a user with a email.
* Reapply r7369 r7367 r7366 r7370 r7381. This brings it back up to the newMelanie Thielker2008-11-191-142/+142
| | | | | | libOMV.
* Reverting the texture sending patch and the new libOMV. This makes thisMelanie Thielker2008-11-191-142/+142
| | | | | | | | | release a direct descendant of the stable 7364, with all the features and none of the issues. This omits the following patch chain: r7383 r7382 r7381 r7377 r7375 r7373 r7372 r7370 r7369 r7368 r7367 r7366
* * Update libOMV to r2359. This is necessary for the progressive texture patchJustin Clarke Casey2008-11-171-142/+142
| | | | | | | | * Update libopenjpeg as well for this patch. * Appears to be okay on a very short sniff test * Source code will be placed in opensim-libs shortly
* * Stop the pointless passing of a scene's own region handler back to it in ↵Justin Clarke Casey2008-11-121-1/+1
| | | | | | | | region comms * Some scene methods ignored it, others did nothing if the region handler given did not match their own (which would never be triggered)
* Make the IM and friends modules optional. Clean up some code that dealtMelanie Thielker2008-11-011-6/+0
| | | | | | | | | | with the old Grid Instant Message over OGS1. Refactor the EventManager to be independent of the rigid module structure design imposed by the current implementation. Message routing is now done in the destination module rather than in the event manager. This way, more or less granular solutions are possible without core changes.
* * Just some OGP maintenance. Standards adherence type stuff. Teravus Ovares2008-10-101-7/+12
|
* * Patch from JHurlimanTeravus Ovares2008-09-261-1/+1
| | | | | | | | | * Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
* fixes a slight copy and paste bug in OGP module.Dr Scofield2008-09-251-1/+1
|
* * In Standalone, add a persistant account for the OGP user.Teravus Ovares2008-09-251-4/+50
| | | | | * Gridmode, this has no effect at all.
* * Remove a message handler Teravus Ovares2008-09-251-4/+16
| | | | | | * Add a more specific error handler for when we're unable to pull the OGP state * rez_avatar/derez ?
* leyla found a capitalization error in one of the OGP messages. Thanks leyla!Teravus Ovares2008-09-231-1/+1
|
* * Update in OGP draft 3 protocol spec with regards to seed region requests ↵Teravus Ovares2008-09-231-1/+3
| | | | running over GET instead of POST and the rez_avatar/request cap being wrapped in the capabilities map.
* * Fix build error, (maybe)Teravus Ovares2008-09-201-1/+1
| | | | | * Might break something.. hard to say.. 0.o
* * One more tweak in the OGP module to support OGP draft3. Teravus Ovares2008-09-191-1/+8
| | | | | * Recognize the proper cap message for rez_avatar/rez in the response cap.
* * Implements an experimental method to define which region you want to go to ↵Teravus Ovares2008-09-191-9/+136
| | | | in your 'region domain' in OGP.
* * minor: eliminate the current warningsJustin Clarke Casey2008-09-191-2/+2
| | | | | | * you'd think from all this that I was one of those fanatically tidy people. I can assure you from looking around my bedroom/study that this is not the case :)
* * Added null exception handler where we couldn't locate a user data record ↵Teravus Ovares2008-09-191-1/+10
| | | | | | | | in the cache for the user * More OGP tweaks to make it play nice in an error condition. * Still Experimental.
* * Switches content type from application/xml+llsd to application/llsd+xml on ↵Teravus Ovares2008-09-191-2/+37
| | | | | | | | outgoing requests. * Monitors / for getting the seed cap for rez_avatar/request on application/llsd+xml && application/xml+llsd && !application/xml * Experimental, this might break LibOMV temporarily.
* * Remove a hack I put into OGP so that I could test OGP over SSL with the ↵Teravus Ovares2008-09-141-3/+1
| | | | SeedCap response not being SSL
* * This update makes configuring SSL a little easier on Windows XP. It also ↵Teravus Ovares2008-09-141-4/+53
| | | | | | | | | makes it possible to run a HTTPS server on the region. It also has a junk Certification authority for test purposes. * There are still a lot of things that are hard coded to use http. They need to be fixed. * Also includes directions * A standard junk PEM file to append to app_settings/CA.pem in the client so SSL will work
* * Minor fixes and cleanups around code being used for Rex Module work.Adam Frisby2008-09-141-8/+0
|
* * Check in first part of http://opensimulator.org/mantis/view.php?id=2073Justin Clarke Casey2008-09-121-3/+0
| | | | | | | | | * This patch aims to introduce look at direction persistence between logins. It won't be active until the second part of the patch is committed in about two weeks time. At this point, region servers that haven't upgraded past this revision may run into problems * This checkin upgrades the user database. As always, we recommend you have backups in case something goes wrong. * Many thanks to tyre for this patch.
* * This updates the OGP module to support both the revision 2 and revision 3 ↵Teravus Ovares2008-09-111-10/+64
| | | | | | | | of the OGP protocol. (Assuming I understood it correctly) * This also removes the host--> ip pre-resolve workaround.
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-061-43/+43
| | | | | | | * 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.
* * Adds configurable OGP Name prefix and suffix. See OpenSim.ini.example at ↵Teravus Ovares2008-09-051-0/+7
| | | | the bottom for details. Defaults to an empty string for prefix and '_EXTERNAL' for suffix
* fix: PostInitialise() not being called on script engines (nasty one that)Dr Scofield2008-09-021-2/+2
| | | | | | cleanup: warnings, readability
* * Pragma out deprecation warning and comment out to remove other warnings in ↵Justin Clarke Casey2008-08-301-5/+7
| | | | | | | | the OGP module * Thanks to Teravus for the heads up on this.
* Update svn properties, formatting cleanup.Jeff Ames2008-08-281-89/+49
|
* * Added hack so that if the default OpenSimulator ParentEstateId(100) is ↵Teravus Ovares2008-08-281-1/+1
| | | | being sent through rez_avatar, it'll be swapped out with 1. This ensures that when the map recognizes the parent estate id parameter on the linden grid, it'll work as expected. This also has the effect of making it impossible to send a Parent Estate ID with 100 over OGP from OpenSimulator (Sorry Owner of estate 100).
* * OGP update, deserialize the parameter array properly in rez_avatarTeravus Ovares2008-08-281-6/+75
| | | | | * Tweak rez_avatar data so it's easier to update when OGPr3 comes out
* * Updates OGP module to define a default starting pointTeravus Ovares2008-08-271-2/+25
| | | | | * An attempt to solve an intermittan SSL Certificate validation error causing communications havok.
* * Eliminate commented out code no longer needed, as discussed on the mlJustin Clarke Casey2008-08-261-30/+1
|
* * It turns out that Mono doesn't currently support setting the Certificate ↵Teravus Ovares2008-08-261-1/+8
| | | | | | | validation handler, however, it throws a NotImplemented exception. * Added Try/Catch/Message
* * Workaround for application/llsd+xml requests coming in as application/xmlTeravus Ovares2008-08-261-0/+20
| | | | | * When OGP is active, disable SSL certificate chain validation. I'll add more options here to come, as well as a way to test against a group of known certificate subjects.
* * minor: zap some more compilation warningsJustin Clarke Casey2008-08-251-8/+8
|
* * zap compilation warningsJustin Clarke Casey2008-08-251-22/+22
|
* Update svn properties.Jeff Ames2008-08-251-881/+881
|
* * Fix to OGP Region to Region teleports. Yay.Teravus Ovares2008-08-251-2/+2
|
* * This commit incorporates the heart of the OpenGridProtocol patch that is ↵Teravus Ovares2008-08-251-0/+881
currently on Forge in a nice, friendly modular format. * There are a lot of changes and this is quite experimental. It's off by default, but you can turn it on by examining the bottom of the opensim.ini.example for the proper OpenSim.ini settings. Remember, you still need an agent domain.. * Furthermore, it isn't quite right when it comes to teleporting to remote regions (place_avatar)