aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* remove the prolog parser from all LSL/C# scripts (it was adding overheadSean Dague2008-06-021-12/+6
| | | | | | | | to every script in most environments). This will break prolog support. Prolog code needs to generate it's template script more like how javascript does.
* * Fixed default ports on the MessagingServer config.Teravus Ovares2008-06-021-2/+2
|
* * minor: doc tweak on last commitJustin Clarke Casey2008-06-021-1/+1
|
* * Add information and documentation about web region loading to ↵Justin Clarke Casey2008-06-021-8/+46
| | | | | | | | OpenSim.ini.example * Also a very little bit of tidying up of this file - it's becoming a bit of a junkyard
* * experimental: Once we've received all the required assets from the asset ↵Justin Clarke Casey2008-06-021-1/+13
| | | | service, launch the actual writing of the archive on a separate thread (to stop tieing up the asset cache received notifier thread)
* * experimental: Make OpenSim archiver save and reload all prim textures when ↵Justin Clarke Casey2008-06-023-4/+14
| | | | not all faces have the same texture
* * Submitting 3 files for the messagingserver that I've kept to myself.Teravus Ovares2008-06-023-0/+157
|
* * Add 'show version' help information into base OpenSim serverJustin Clarke Casey2008-06-021-1/+2
|
* * This update enables grid wide presence updates.Teravus Ovares2008-06-029-44/+374
| | | | | | | * You'll need to start-up the MessageingServer and set it up. It sets up like any of the other grid servers. * All user presence data is kept in memory for speed, while the agent is online. That means if you shutdown the messaging server or the messaging server crashes, it forgets who's online/offline. * Occasionally the region-cache will get stale if regions move around a lot. if it gets stale, run clear-cache on the messaging server console to clear the region cache.
* Fixed half completed comment in OpenSim.ini.example.Teravus Ovares2008-06-021-0/+2
|
* * Fixes a bug saving the current sun phase to the estate_settings file.Teravus Ovares2008-06-023-2/+25
|
* cleanup: uncommenting null-op else tree in TaskInventoryItem.csDr Scofield2008-06-021-6/+6
|
* PATCH : 0001431: corrections to torus physical mesh for default hollow shape ↵Teravus Ovares2008-06-022-19/+38
| | | | | | | | and taper orientation along path. --------- From Dahlia! Thanks Dahlia!!! the attached patch reinstates the default hollow shape of the physics mesh of the torus prim type and corrects the orientation of the effects of taper on the profile along the path.
* * While I couldn't reproduce it, I was able to see how it *might* happen, so ↵Teravus Ovares2008-06-021-2/+5
| | | | therefore; fix to: 0001058: Physics crash when changing Type of Prim intersecting with ground.
* * This enables grid-wide instant messaging in a peer to peer with tracker ↵Teravus Ovares2008-06-013-25/+169
| | | | | | | | style way over XMLRPC. * Friend status updates are still only local, so you still won't know before instant messaging someone if they're online. * The server each user is on and the user server must be updated or the instant message won't get to the destination.
* * Committing more unfinished stuff. Nothing significant at the moment. IM ↵Teravus Ovares2008-06-015-11/+362
| | | | related.
* * Applying Dahlia's patch : 0001429: Patch to fix prism physical mesh and ↵Teravus Ovares2008-06-012-60/+132
| | | | | | | add path start and end to skew z offset of circular path prim meshes (PATCH attached) * Apparently this fixed a bug in my code that caused PushX to appear to work and pushX didn't appear to work after the patch.. so I fixed that after applying this patch and PushX actually works now.
* Update svn properties.Jeff Ames2008-06-0120-14949/+14945
|
* * Committing some stuff I'm working to make it so I can commit an upcoming ↵Teravus Ovares2008-06-011-3/+169
| | | | patch from Dahlia. IM type stuff. No big deal, not done.
* * Move most bookending startup/shutdown messages to BaseOpenSimServer so ↵Justin Clarke Casey2008-06-014-31/+6
| | | | they appear in non-console servers too
* * Fix build break by eliminating remaining IScenePermissions references - ↵Justin Clarke Casey2008-06-0112-21/+26
| | | | | | | | must remember to nant clean * Hook all server startups into base opensim server startup method
* * Put IScenePermissions out of its miseryJustin Clarke Casey2008-06-011-35/+0
|
* * Move log version printing up into BaseOpenSimServerJustin Clarke Casey2008-06-015-19/+23
|
* * Refactor: Split opensim background server into a separate classJustin Clarke Casey2008-06-0112-52/+106
|
* * Updates permission module so that GenericCommunicationPermission returns ↵Teravus Ovares2008-06-011-2/+3
| | | | true. Instant messages, inventory transfers use this.. and it was always returning false.
* * Duh, actually returning from the CreateAsset method once we know the asset ↵Justin Clarke Casey2008-05-311-0/+1
| | | | exists would be better than carrying on
* * Remove the mysql logging noise I accidentally left in a few commits agoJustin Clarke Casey2008-05-311-2/+2
|
* * Enable loading of textures in OpenSim archives with load-oar/save-oarJustin Clarke Casey2008-05-311-2/+0
| | | | | | | * Right now, this only saves and reloads textures that have been applied to the entire prim (not ones which have been applied to individual faces). * This is work in progress - it is currently experimental, hacky, inefficient, completely unsupported and liable to change rapidly at short notice :)
* * Change MySQL to check whether an asset already exists before inserting it ↵Justin Clarke Casey2008-05-311-1/+40
| | | | into the database
* * minor: comment out old debugging messages in task inventory item ↵Justin Clarke Casey2008-05-311-5/+5
| | | | restoration routines
* * Put in preparatory code to restore whole prim textures on archive loadJustin Clarke Casey2008-05-313-3/+35
| | | | | | * No user functionality yet
* Mantis#1428. Thank you kindly, fdg for a patch that solves:Charles Krinke2008-05-311-0/+5
| | | | | | | | When you copy an item in inventory and paste it, the name gets lost. Also when you use "Save as" in the Appearance Editing window the created item in inventory has always the name "New <item-type>", regardless of what you typed in as name.
* * Make version information common to all serversJustin Clarke Casey2008-05-316-83/+89
| | | | | | * Now all servers respond to the "show version" command on the console
* * Made UpdateUserCurrentRegion a bit more forgiving.lbsa712008-05-311-9/+35
|
* * Propogate OpenSimMain hack to stop mono-addins scanning warnings to the ↵Justin Clarke Casey2008-05-312-2/+9
| | | | | | | | grid managing * This hack just temporarily sends console output to /dev/null when we make the relevant addins calls, restoring it afterwards
* * Ignored some bins and genslbsa712008-05-310-0/+0
|
* * Enabled the Yield Prolog Script Enginelbsa712008-05-311-8/+25
|
* * minor: Add copyright statementJustin Clarke Casey2008-05-311-0/+28
|
* * Remove rogue ? to get things compiling againJustin Clarke Casey2008-05-311-1/+1
|
* Mantis#1314. Thank you kindly, Kinoc for YieldProlog.Charles Krinke2008-05-3117-0/+13548
| | | | | | | | I have added everything *except* the patch to .../LSL/Compiler.cs. The Compiler.cs patch has a namespace issue. Lets make a second patch to close the gap.
* * Implements UserServer logoff in a few situationsTeravus Ovares2008-05-3121-17/+344
| | | | | | | * User tries to log-in but is already logged in. Userserver will send message to simulator user was in to log the user out there. * From the UserServer, admin types 'logoff-user firstname lastname message'. * Some regions may not get the message because they're not updated yet.
* Mantis#1425. Thank you kindly, Melanie for a patch that:Charles Krinke2008-05-311-1/+4
| | | | | 0001425: [PATCH] Correct llResetOtherScript() behavoir in XEngine
* * If you check fixed sun, in the estate tools 'terrain tab', the sun will ↵Teravus Ovares2008-05-301-1/+8
| | | | fix in the location you set. (however the checkbox doesn't get re-populated properly yet, so it'll uncheck again even though the message got through to the server)
* * You can set the sun phase via the estate tools now. It doesn't persist ↵Teravus Ovares2008-05-301-15/+16
| | | | across reboots though.
* * Hook up archive loading to load in prim xml dataJustin Clarke Casey2008-05-304-19/+57
| | | | | | * This now has equivalent functionality to load-xml2 - no asset data is restored yet
* * Refactor: Change multiple requests for a module interface to use a stored ↵Justin Clarke Casey2008-05-301-16/+12
| | | | reference instead.
* * Crudely migrate SceneXmlLoader into the Serializer moduleJustin Clarke Casey2008-05-304-49/+91
|
* Mantis#1422. Thank you kindly, Xantor for your llLoopSound()Charles Krinke2008-05-301-0/+6
| | | | | | patch and I apologize for my confusion with the interim patch earlier.
* * Stop the IRC module throwing a nre on shutdown if it isn't actually being usedJustin Clarke Casey2008-05-301-2/+5
|
* * Successfully pick out prims.xml file from archiveJustin Clarke Casey2008-05-305-6/+79
|