aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* * oops, fix region startup to be in the correct sequence (though it appeared ↵Justin Clarke Casey2008-10-033-4/+4
| | | | to work anyway)
* Implement temp-on-rez objecte really being temporaryMelanie Thielker2008-10-033-6/+49
|
* * For shits and giggles, print out the time taken for a server to start up ↵Justin Clarke Casey2008-10-031-0/+4
| | | | | | | | (which doesn't include stuff such as script starting time on the region server). * Yes, you could work this out from timestamps in the logs, but that's far too much work
* * refactor: make startup a template methodJustin Clarke Casey2008-10-039-25/+21
|
* This changeset changes the way chat from client is routed: Dr Scofield2008-10-0311-178/+215
| | | | | | | | | | | | | | | | | | | | | | | | | | | old way: each region module interested in chat from client had to - subscribe to scene.EventManager.OnNewClient - then in its OnNewClient delegate it would subscribe to client.OnChatFromViewer to capture chat messages coming new way: ChatModule is the only region module that uses the "old way" approach but is now forwarding all client chat via scene.EventManager.OnChatFromClient - each region module interested in chat from client now only subscribes to scene.EventManager.OnChatFromClient this not only simplifies code, but also allows us to substitute ChatModule with derived classes (ConciergeModule is going to be one example). Also, this changeset changes ChatFromViewer to ChatFromClient as it doesn't necessarily have to be a viewer that is a chat source. i've taken great care to only comment out those OnNewClient delegates that were only used for getting at the client chat --- hope it's not breaking anything.
* * minor: remove warnings (the code cleaners strike again)Justin Clarke Casey2008-10-036-23/+20
|
* Prevent attachments to be persisted in the destination region when theMelanie Thielker2008-10-034-5/+17
| | | | | | avatar is not present there.
* fix the sqlite break. There were two issue here:Sean Dague2008-10-031-1/+2
| | | | | | | | | | | 1. type issues on column create in ado.net 2. not setting a field in the ado.net row translates into explicitely setting it to null in sqlite land (because it can't read the defaults stanzas out of the database) Things should work again after this.
* Add database persistence for material settingMelanie Thielker2008-10-034-0/+22
|
* Mantis #1360Melanie Thielker2008-10-037-12/+46
| | | | | | | Thank you, idb, for a patch to implement the packet and plumbing for the material settings.
* * EventQueueGet is now working.Teravus Ovares2008-10-036-29/+346
| | | | | | | | * Switched it on by default * Updated OpenSim.ini.example to reflect this * Caught a UDP Server issue that occurs when the network pipe is saturated * Still experimental :D
* Reintroduces the discovery mechanism to use llRequestSimulatorData("", 128)Melanie Thielker2008-10-037-15/+45
| | | | | | | Causes the dataserver event to return "OpenSim" when running on OpenSim. Requires ThreatLevel to be "High" or above to function.
* Plumb in the start parameter in DNEMelanie Thielker2008-10-032-1/+11
|
* Attempt to prevent attached prims from being persisted. Attachments withMelanie Thielker2008-10-031-1/+1
| | | | | | | invisiprim refresh scripts get sent to the database and remain there when the agent logs out. This tries to prevent that.
* Mantis#2307. Thank you kindly, Godfrey for a patch that solves:Charles Krinke2008-10-031-11/+7
| | | | | | | | | | | In Second Life's implementation of llParseString2List(), all spacer strings which occur within the source string are included in the resulting list. In OpenSim's implementation, any spacers occurring at the beginning of the string are discarded; furthermore, if multiple spacers occur between non-spacer elements, or at the end of the source string, only the first spacer is added to the resulting list; the remainder are discarded.
* Check for empty string as well, just as illegal.Melanie Thielker2008-10-031-1/+1
|
* Prevent an exception when the directory given for XML save is read onlyMelanie Thielker2008-10-031-0/+3
| | | | | | and region config is loaded from the web
* Mantis #2317Melanie Thielker2008-10-034-3/+20
| | | | | | | | Thank you, fusspawn, for an implementation of osGetSimulatorVersion. This patch removes the llRequestSimulatorData(..., 128) hack and implements the functionality as an osFunction.
* Mantis #2282.Homer Horwitz2008-10-021-1/+1
| | | | | | Thanks tglion for the necessary info to solve an ArgumentOutOfRangeException during region start.
* Added the first version of the MapSearchModule, which allows you to search forHomer Horwitz2008-10-021-0/+119
| | | | | | | | | regions in the in-world map. It currently only returns the first region that matches the search string; in a future version it will return more search results. Note: File added; run runprebuild.
* - Fixed a small off by one error in sending MapBlocksHomer Horwitz2008-10-022-2/+1
| | | | | | - Removed MapBlockData.Flags; it isn't used anywhere (maybe MapBlockData.RegionFlags replaced it?)
* - Fix invalid cast in OSHttpRequestHomer Horwitz2008-10-021-3/+3
| | | | | | - Web-map should work again :)
* Mantis #2314Melanie Thielker2008-10-022-3/+42
| | | | | | | Thank you, sacha magne, for a patch to add login level and message commands to the user server
* Square hollow size in cylinder meshes were a little too small - fixed.Dahlia Trimble2008-10-021-0/+2
|
* - Added SendScriptTeleportRequest to IClientView and classes implementing it.Homer Horwitz2008-10-015-2/+32
| | | | | | - Implemented llMapDestination.
* stick a TODO in here about land tests, which really can't be done inSean Dague2008-10-011-1/+7
| | | | | | | the current state as the Land Object has all these live references back to Scene.
* enhance boundary tests for no terrain. Put in a null loadSean Dague2008-10-011-3/+22
| | | | | | test for land.
* * minor: oh, and comment out the now unused logger as wellJustin Clarke Casey2008-10-011-2/+2
|
* * minor: Comment out temporarily statistical counter I accidentally left in ↵Justin Clarke Casey2008-10-011-1/+1
| | | | from the last commit
* * Try bumping packet resend timeout up to 2 seconds instead of 1Justin Clarke Casey2008-10-011-9/+22
| | | | | | | | * This actually probably doesn't make a huge difference. We still end up resending a massive number of packets in quite a few situations, but it's not easy to consistently reproduce this. * Might really need some throttling of packet send to the client on the OpenSim end.
* * refactor: rename interface to put standard I prefix in frontJustin Clarke Casey2008-10-013-5/+5
|
* removing asterisk: it's now living at ↵Dr Scofield2008-10-017-618/+0
| | | | http://forge.opensimulator.org/gf/project/asteriskvoice/
* remove tests for inventorySean Dague2008-10-011-0/+19
|
* remove these old ruby grid servers as they are really old (like a yearSean Dague2008-10-015-291/+0
| | | | | | old). A project like this is welcomed to come back on opensim forge.
* remove mysql_connection.ini.example, no one should be using this anySean Dague2008-10-011-18/+0
| | | | | | more as you can specify connect strings in opensim.ini per driver.
* add basic store retrieve prim inventory test. the primSean Dague2008-10-011-3/+60
| | | | | | inventory interfaces definitely need some rethinking.
* one class per file please.Sean Dague2008-10-012-100/+138
| | | | | | This puts the TaskInventoryDictionary in it's own file.
* cleaning up example configuration for REST pluginsDr Scofield2008-10-011-1/+1
|
* * Fix bug in LLPacketHandler where the tickcount when a packet was ↵Justin Clarke Casey2008-10-012-9/+21
| | | | | | | | approximately sent was not being stored in the ack record * This meant that acks were being sent out every 250ms when the ack timer fired, rather than when they had actually aged past m_ResendTimeout
* add delete prim tests. Found and fixed bugs where regionSean Dague2008-10-013-8/+47
| | | | | | | | is not respected by sqlite or mysql drivers so that deleting and object in a region actually deletes that object from any region.
* Add a user server XMLRPC method to set the MOTD and the minimum GodLevelMelanie Thielker2008-10-014-0/+69
| | | | | | | | required to log in. set_login_params accepts avatar_uuid and password of a user with god level 200 or more, and allows setting either or both the login_motd or login_level
* a little (incomplete) hackery in the IRC module to allow run-time connection ↵Dahlia Trimble2008-10-011-11/+74
| | | | changes
* Added functions to find prims by nameJohan Berntsson2008-10-012-0/+37
|
* * Adds error handlers for errors parsing the querystring passed on the ↵Teravus Ovares2008-10-011-3/+18
| | | | | | | OSHttpRequest constructor. * maybe.. it was a key that was null. Obviously you can't still a null key in a string key'ed collection.
* * Fixed a mangled Seed caps handler definition on login to region in ↵Teravus Ovares2008-10-013-16/+130
| | | | | | | | standalone where port wasn't the http port. * Removed spurious warning message * More debug in EventQueueGet Module to figure out why we're loosing the handlers.
* * Replacing Net.HttpListener with HttpServer. Teravus Ovares2008-09-306-96/+302
| | | | | | | | * This is a HUGE update.. and should be considered fraut with peril. * SSL Mode isn't available *yet* but I'll work on that next. * DrScofld is still working on a radical new thread pump scheme for this which will be implemented soon. * This could break the Build! This could break your Grid!
* more concierge stuffDr Scofield2008-09-301-1/+7
|
* OpenSim.ini.example code for concierge moduleDr Scofield2008-09-301-0/+5
|
* initial version of a meeting concierge module.Dr Scofield2008-09-301-0/+213
|
* - a couple of minor code cleanups in RestInventoryServicesDr Scofield2008-09-304-83/+96
| | | | | | | - cleanups and more comments in ChatModule and IRCBridgeModule - adding Name support in ScenePresence