aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-05-07* minor: use system ascii encoding rather than newing up our own objectJustin Clarke Casey1-3/+1
2009-05-07instrument most of the tests with a new InMethod function that may help us ↵Sean Dague14-17/+90
figure out where that pesky deadlock is during test runs.
2009-05-07RemoteAdminPlugin was using a mixture of both "true"/"false" and 0/1Dr Scofield1-51/+51
(XmlRpc boolean encoding) to return boolean values --- sometimes both variants in the SAME XmlRpc method! As XmlRpc DOES have a proper encoding for boolean, i think we should use that --- having a mixture of both is a bad thing in any case. this patch changes all "true"/"false" boolean "encodings" to just true/false which will be properly encoded by XmlRpc. BIG FAT NOTE: this might/will break existing customers of RemoteAdminPlugin --- make sure your scripts, apps, etc get updated accordingly (unless you have already been dealing with this mess before)
2009-05-07* minor: Quieten down temporary profile resolver to only log when it's ↵Justin Clarke Casey1-3/+3
actually dealing with a temporary profile
2009-05-07* Consistently used dashed uuid format for mysql region data, as is done for ↵Justin Clarke Casey2-29/+105
all other tables * This revision contains a mysql data migration. Please backup your mysql region database as a precaution before using this code. * I also advise that you do a runprebuild[.sh|.bat] and a clean build ("nant clean build" if you're using the command line). * This change is needed for future id schemes
2009-05-07minor: Inconsquential change to provoke another buildJustin Clarke Casey1-1/+1
2009-05-07* Consistently use dashed uuid format for sqlite region data, as was ↵Justin Clarke Casey2-38/+114
previously done for sqlite inventory data. * This revision contains a data migration. Please backup your sqlite region db as a precaution before using this code * I also advise that you do a runprebuild[.sh|.bat] and a clean build ("nant clean build" if you're using the command line). * This change is needed for future id schemes
2009-05-07From: Alan M Webb <alan_webb@us.ibm.com>Dr Scofield1-106/+673
This update implements support for creation of one or more default avatars from information contained in a file default_appearance.xml. Each avatar may have any number of "outfits" with each outfit representing a different ensemble. The default avatars get created the first time the RemoteAdmin interface is used to define a user. I've tested this quite a bit, but it will benefit from lost of attention, I'm sure.
2009-05-07Change avatar updates to be processed the same way object updates are, e.g.Melanie Thielker1-27/+51
packet length check. More changes to come
2009-05-07From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield1-4/+15
logs error message on empty data in DynamicTextureModule
2009-05-07* Added some more GetAssetStreamHandlerTestslbsa712-4/+52
* In the process, caught a potential bug where the handler would allow paths not starting with the registered prefix
2009-05-06refactoring Scene.NewUserConnection() to be simpler and clearer.Dr Scofield2-85/+80
2009-05-06* Added some GetAssetStreamHandlerTestslbsa714-8/+56
* Minor tweaks to attain testability
2009-05-06Thank you kindly, Fly-Man- for a patch that:Charles Krinke1-5/+17
Adding more SL likeness for Email module in CORE. I've added some SL likeness to the Email module so that it looks more like emails going out in the same standard as SL uses
2009-05-05Allow temp-on-rez prims to take part in physics (e.g. temp-on-rez bullets)Homer Horwitz1-2/+3
This makes re-rezzed temp-on-rez objects visible, too. Fixes Mantis #3405
2009-05-05* Change automatic properties back to manual get/setJustin Clarke Casey1-22/+220
* Automatic properties are only supported after .Net 2.0, causing these to fail when building via nant on Windows (and probably visual c# 2005 too) * Hopefully these can be used once building support in Visual C# 2005 is dropped.
2009-05-05* If an item creator id contains an iar loaded name, create a temporary ↵Justin Clarke Casey8-86/+86
profile and hashed UUID to represent the user
2009-05-05- moving banned check and public/private check toDr Scofield19-131/+186
Scene.NewUserConnection() - adding reason reporting this enforces estate bans very early on and prevents us from circulating client objects that we'd then have to retract once we realize that the client is not allowed into the region
2009-05-05* Fix http://opensimulator.org/mantis/view.php?id=3585Justin Clarke Casey1-16/+22
* Make public variables properties instead, as there is a difference
2009-05-05Add copyright header. Formatting cleanup. Ignore some generated files.Jeff Ames9-87/+102
2009-05-05Update svn properties.Jeff Ames2-491/+491
2009-05-05Remove bin directory from HttpServer.Jeff Ames2-0/+0
2009-05-05Add the remote user connector skeletonMelanie Thielker2-0/+89
2009-05-05Change local user connector into a shared moduleMelanie Thielker1-1/+7
2009-05-05Some refactoring. Database is now active in the new user serverMelanie Thielker5-9/+94
2009-05-05Plumb the database into the new server skelMelanie Thielker1-0/+3
2009-05-05Plumb the new server connector logicMelanie Thielker7-4/+180
2009-05-05Committing the user server executable skeletonMelanie Thielker1-0/+44
2009-05-05Add an interface skeleton for user servicesMelanie Thielker2-0/+14
2009-05-05Committing the HTTP (REST) server baseMelanie Thielker2-1/+82
2009-05-05Fix crash on loginMelanie Thielker1-1/+1
2009-05-05Committing the new server baseMelanie Thielker2-1/+226
2009-05-04* Attempting to find cause of NotSupportedException in Asset subsystem.Adam Frisby1-1/+1
2009-05-04Fix the AsUuid thingyMelanie Thielker1-4/+4
2009-05-04Fox the InventoryItem.CreatorIdAsUuid propertyMelanie Thielker1-1/+13
2009-05-04Remove the csproj files that got into SVNMelanie Thielker8-540/+0
2009-05-04Committing the changed treeMelanie Thielker47-0/+6849
2009-05-04Intermediate commit. WILL NOT COMPILE!Melanie Thielker126-6333/+102
2009-05-04* Resolve http://opensimulator.org/mantis/view.php?id=3573Justin Clarke Casey3-4/+14
* Override add user for HG user services to hit local services if present
2009-05-04* Initial infrastructure for ospa only uuid hashing of retrieved inventory itemsJustin Clarke Casey3-7/+119
2009-05-04* refactor: move OspResolver to a different namespaceJustin Clarke Casey4-3/+6
2009-05-04* Enhance some internal inventory data plugin behaviour to match what was ↵Justin Clarke Casey3-14/+21
probably intended * (e.g returning combined results of plugin rather than always the first result) * This will not affect any existing functionality
2009-05-04* Insert profile references for creators for items saved into iarsJustin Clarke Casey4-52/+59
2009-05-04* minor: remove some mono compiler warnings, minor cleanupJustin Clarke Casey11-42/+35
2009-05-04Prebuild changes to allow the console to reference the http serverMelanie Thielker1-0/+15
2009-05-04* Refactor: Simplify InventoryFolderImpl. No functional change.Justin Clarke Casey4-179/+68
2009-05-04Add a method to flush the prim update buffers once a frame, since the timerMelanie Thielker8-0/+37
appear to be too slow to be useful, or fail too fire. I may remove the timers as a consequence if this.
2009-05-04Add a skeleton class, "RemoteConsole", for a console that uses RESTMelanie Thielker2-1/+57
2009-05-04Refactor. Make ConsoleBase a true base class. Create CommandConsole as a simpleMelanie Thielker16-819/+991
console capable of processing commands. Create LocalConsole as a console that uses cursor control and context help. Precursor to a distributed console system for the new grid services. No functional change intended :)
2009-05-04Thanks BlueWall for Mantis #3578 - adding Hypergrid connection to JSON StatsDahlia Trimble1-0/+2