aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-08-12* Added two new packet handler implementations for inventory ops. This is ↵Diva Canto1-0/+19
starting to work! - but can't be activated incrementally, the flip needs to be global for all inventory ops. * Added a base inventory connector that does common processing of inventory among all reference connector implementations. E.g. AddItem requires additional processing before being forwarded to service. * Added if (m_Enabled) upon RemoveRegion
2009-08-12change 535cb0efc so that the default LLSD serialization format isdr scofield (aka dirk husemann)1-2/+4
llsd+xml instead of llsd+json --- the latter seems to break existing bots. this assumes that those bots that want llsd+json will properly signal that desire, if that is not the case, we need to revisit this. fixes mantis #3977.
2009-08-11Re-adding a conditional in UserManager that was removed with arthusv's ↵Diva Canto1-1/+1
commit. Changing new inventory ops to POST.
2009-08-11Apply http://opensimulator.org/mantis/view.php?id=1448Justin Clark-Casey (justincc)1-0/+11
Store and retrieve user profile url at runtime Not yet persisted Thanks Fly-Man
2009-08-11Enable the console show version command and the viewer about command, to ↵Chris Down1-22/+46
show the last git commit hash together with the conmit date and time. The data is retrieved form a file bin/.version This file can be generated automatically using the post commit script by adding the following to the script: git log -n 1 --pretty="format:%h: %ci" > bin/.version This command can also be run manually to create the bin/.version file. This command genrates a short form of the commit hash and a date and time of the commit in ISO8601 format. If a full commit hash is required then change %h to %H The logic that is used to extract the deprecated svn revision is still included. It will be removed at a future date
2009-08-11Establish CachedUserInfo.OnInventoryReceived event so that region/test ↵Justin Clark-Casey (justincc)2-47/+68
inventory code can be written with the async inventory fetch
2009-08-11* Improves SceneSetupHelper to allow the tester to choose a real or mock, ↵Arthur Valadares3-128/+15
inventory and asset, service modules. The boolean startServices was replaced with realServices string. If the string contains the word asset, it will start a real asset module, if it contains inventory, it starts a real inventory. Otherwise, it use mock (NullPlugin-like) objects, for tests that don't really need functionality. * SetupScene is now actually sharing the asset and inventory modules if the tester wishes to have multiple regions connected. To link regions, just start SetupScene with the same CommunicationManager for all scenes. SceneSetupHelper will hold a static reference to the modules and won't initialize them again, just run the scenes through the modules AddRegion, RegionLoaded and PostInitialize. * With the recent changes, both asset and inventory (and in the future, user) services should always be asked from the scene, not instantiated alone. The tests should reflect this new behavior and always start a scene.
2009-08-10Added two new methods to IIventoryService -- GetFolderForType and ↵Diva Canto1-0/+10
GetFolderContent. Some meat to it, but not completed. None of this code is called anywhere yet.
2009-08-10Changed RequestRootFolder to GetRootFolderDiva Canto2-2/+2
2009-08-10Last piece of cleaning up old inventory. Old IInventoryServices and ↵Diva Canto3-258/+2
ISecureInventoryService interfaces removed.
2009-08-10Conditional to prevent a null ref in tests. The tests may still not pass.Diva Canto1-1/+1
2009-08-10First pass at cleaning up old OGS1 and Local Inventory: removed ↵Diva Canto1-114/+0
everything-inventory in CommsManager, which wasn't actively used anymore.
2009-08-10AssetCache.addin.xml seems to be historical junk too. Removed.Diva Canto1-17/+0
2009-08-10Removed IAssetServer.Diva Canto1-38/+0
2009-08-10Slowly working my way towards the elimination of IAssetServer and IAssetCache.Diva Canto2-122/+6
2009-08-10More clean up from asset cache legacy. None of these classes are used anymore.Diva Canto4-1066/+0
2009-08-10Added some help instructions to the new RegionInfo region setup process; ↵Adam Frisby1-0/+6
mainly to point out 'yes you can input information here.' since it seems to elude some users.
2009-08-09Removing unused files, legacy from old asset "cache".Diva Canto2-185/+0
2009-08-09Removed HGInventory out of core. This is part of HG2, which it now being ↵Diva Canto1-744/+0
developed outside.
2009-08-08* FreeContext may be a bit too buggy for my tastes in some environments. * ↵Teravus Ovares (Dan Olivares)1-7/+7
Commenting it for the moment.
2009-08-08Change the default for internal IP address back to 0.0.0.0Melanie1-1/+1
2009-08-07Remove debugging output frm ini file loading. Make it collect matchingMelanie1-10/+8
files only from last path component.
2009-08-07Add extensive debug output to Util.GlobMelanie1-0/+9
2009-08-07Remove GetFullPath call from config includes, because it barfs in WindozeMelanie1-3/+0
2009-08-07Add a method to init the OSSL Api's m_LSL_Api member back to the OSSL ApiMelanie1-0/+3
2009-08-06Added ToXml2() to ISceneObject, so that components other than regions can ↵Diva Canto1-0/+1
use this abstraction.
2009-08-06Allow arbitrary wildcards in config includes. Things likeMelanie1-0/+51
Include-Modules = "addin-modules/*/config/*.ini" will now work. Adds Util.Glob, which will resolve a globbed path into a string list.
2009-08-05* Patch from jhurliman to add accept type recognition to determine the llsd ↵Teravus Ovares (Dan Olivares)1-7/+67
content format. *should allow both json and xml serializations of llsd to work properly. Signed-off-by: Teravus Ovares (Dan Olivares) <teravus@gmail.com>
2009-08-05* Remove some mono compiler warningsJustin Clark-Casey2-4/+3
2009-08-02Thank you kindly, dslake, for a patch that:Charles Krinke1-0/+4
The region dearchive module assumes extra null bytes will be appended to the end of every OAR file. This may be due to the block nature of storage but it seems like an unsafe assumption. When streaming region archives over a network or through a memory stream, no additional null bytes are added to the end and this an exception.
2009-08-02* An enum for The VisualParams array that the viewer sends us with 90% of ↵Teravus Ovares1-11/+842
the documentation. * Automatically generated using the BuildVisualParamsEnum Method that gets data from the libOMV VisualParams NameValue definitions which they generate from the the avatar_lad.xml file * Want to know what element controls the eye size, jowls. pointy ears? no problem.
2009-08-01Add copyright header. Formatting cleanup.Jeff Ames3-3/+30
2009-07-30* Fixed another potential httpserver leak.Teravus Ovares3-1/+26
2009-07-29Add basic support ofr detached request handling to the HTTP server.Melanie Thielker1-1/+7
Groundwork to finish HTTP IN.
2009-07-29* An attempt to fix mantis #3955Teravus Ovares1-2/+2
* It's possible it could re-cause mantis #3953, but the FreeContext isn't always necessary because Connection: close ---> Disconnect(SocketError.Success) { FreeContext(); }
2009-07-29* An attempt to fix mantis #3953Teravus Ovares4-5/+29
2009-07-29* Re trigger pandaTeravus Ovares1-1/+1
2009-07-29* Adds the ability to have a thread efficient long poll service (such as the ↵Teravus Ovares7-5/+442
eventqueue) * If this doesn't melt the Http Server, this will significantly reduce the number of threads in use on regions with many users. * Adds AddPollServiceHTTPHandler, and RemovePollServiceHTTPHandler to BaseHttpServer * Generic enough to be used for many long poll services, not only the EventQueue.
2009-07-28Add the new StatusData block to the other two searchh packetsMelanie Thielker1-0/+2
2009-07-28Fix a null data block in DirClassifiedReply packet, preventing a sessionMelanie Thielker1-0/+1
crash in search. Fixes Mantis #3952
2009-07-25* as per my e-mail to opensim-dev archive: ↵Teravus Ovares1-1/+1
https://lists.berlios.de/pipermail/opensim-dev/2009-July/007223.html I'm bumping gridcomms interface version to 5. MajorInterfaceVersion = 5
2009-07-25* Updates libOMV to version 0.7.0Teravus Ovares2-10/+10
* Uses mantis #3811 as a base (thanks jhuliman) with changes. * E-mail regarding interface changes sent to the opensim-dev list * Archive: https://lists.berlios.de/pipermail/opensim-dev/2009-July/007219.html
2009-07-23Formatting cleanup.Jeff Ames1-6/+3
2009-07-21* Updated C# WebServer to the latest available source download (r19869) and ↵Teravus Ovares2-5/+45
applied a few mods from the old version (now up on opensim-libs (VS 3.5 project). * Made various changes to BaseHttpServer to accommodate the new interfaces. * This version has been significantly re-architected and may fail in unusual and insidious ways. * Please pay attention to any errors you get and post a Mantis if you can reproduce an issue with the HTTPServer. I'm including the pdb and having the http server compiled in debug for a few weeks so that when an error occurs, it'll print the pertenant data. * Once again, this is the full C# WebServer, not the lite branch that is included in LibOMV (we need SSL!)
2009-07-19* Created a way that the OpenSimulator scene can ask the physics scene to do ↵Teravus Ovares1-0/+1
a raycast test safely. * Test for prim obstructions between the avatar and camera. If there are obstructions, inform the client to move the camera closer. This makes it so that walls and objects don't obstruct your view while you're moving around. Try walking inside a hollowed tori. You'll see how much easier it is now because your camera automatically moves closer so you can still see. * Created a way to know if the user's camera is alt + cammed or just following the avatar. * Changes IClientAPI interface by adding SendCameraConstraint(Vector4 CameraConstraint)
2009-07-17fixed the bug where changing the rotation of a selection of prims in a ↵MW1-0/+3
linkset, made each of those prims rotate around its own centre rather than around the geometric centre of the selection like they should do (and like the client expects). This involved adding a new OnUpdatePrimSingleRotationPosition event to IClientAPI so that we can get the changed position from the client. Btw adding new events to IClientAPI is really tedious where you have to copy the change across to at least 5 or 6 other files. [Note this doesn't fix the bug where any rotation changes to the root prim (but not the whole linkset) cause rotation errors on the child prims.]
2009-07-15minor: remove some mono compiler warningsJustin Clarke Casey3-5/+4
2009-07-15Bump version in Framework/Servers/VersionInfo to 0.6.6.Jeff Ames1-1/+1
2009-07-12Changed the DeRezObject event so it passes a list<uint> of localIDs in one ↵MW1-1/+1
event trigger rather than triggering the event once for every localid in the derez packet.
2009-07-10* minor format changes and message additionsJustin Clarke Casey1-6/+20