Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2009-08-25 | A slightly modified version of | Teravus Ovares (Dan Olivares) | 1 | -1/+6 | |
http://opensimulator.org/mantis/view.php?id=4040 by jhurliman. The patch didn't match up, so I winged it here. My effort to manually merge the patch seems to make sense, so I'm going to commit it. | |||||
2009-08-22 | Changed the namespace of old InventoryServiceBase amd AuthedSessionCache. | Diva Canto | 2 | -2/+4 | |
2009-08-22 | Moved AuthedSessionCache to where it is used -- Grid/InventoryServer. | Diva Canto | 2 | -0/+650 | |
2009-08-21 | Fix Messaging server so -xmlfile actually works | Melanie | 1 | -0/+1 | |
2009-08-21 | Add -xmlfile= option to UGM, to let the files be outside bin if desired | Melanie | 4 | -3/+11 | |
2009-08-20 | Remove the AssetInventory server from core. It has fallen behind both | Melanie | 23 | -5707/+0 | |
upstream and the reference implementation to the point where it is no longer usable. It has no known users, and sinnce it doesn't work anymore, it is safe to assume that no one has used it in a long time. | |||||
2009-08-19 | Fixing a spot I missed in assets. Switching Grid to the new naming schema ↵ | Kunnis | 1 | -3/+3 | |
with Store/Get | |||||
2009-08-19 | * Switching IAssetData to follow the new naming schema, removing the ↵ | Kunnis | 2 | -5/+5 | |
separate insert and update methods. | |||||
2009-08-19 | Graft the REST console onto the message server as well. What a dirty hack! | Melanie | 1 | -20/+59 | |
Works the same as the others. | |||||
2009-08-19 | Graft the REST console onto the grid server. Same procedure as with | Melanie | 3 | -3/+37 | |
the user server. | |||||
2009-08-19 | Add rest console support to the user server. Will ask new questions at | Melanie | 1 | -1/+38 | |
startup. To use, run it normally once, answering the questions, then run again with -console=rest. Also now supports -console=basic for a console that reads stdin | |||||
2009-08-10 | Last piece of cleaning up old inventory. Old IInventoryServices and ↵ | Diva Canto | 2 | -6/+0 | |
ISecureInventoryService interfaces removed. | |||||
2009-08-09 | Re-removing 2 lines that got added back on Melanie's commits. git hickup. | Diva Canto | 1 | -2/+0 | |
2009-08-09 | Rename UserData to UserAccount data | Melanie | 1 | -0/+2 | |
2009-08-09 | Removed HGInventory out of core. This is part of HG2, which it now being ↵ | Diva Canto | 1 | -2/+0 | |
developed outside. | |||||
2009-07-12 | Fixed bug in AvatarCreationModule, where during the cloning of a folder it ↵ | MW | 1 | -0/+5 | |
would report it was unsuccessful if the folder was empty. | |||||
2009-07-10 | Remove all references to HttpServer from CommsManager (all incarnations) | Melanie Thielker | 1 | -1/+1 | |
Change all uses of the HttpServer properties to use the new singleton | |||||
2009-06-18 | * Corrected CAPS namespaces | Arthur Valadares | 2 | -2/+2 | |
* "luke, use the sed" | |||||
2009-06-11 | InterServiceInventoryService references *almost* completely removed from the ↵ | diva | 2 | -2/+2 | |
simulator. Only a couple left, not important. Also updated the login tests -- Justin, this time I was able to fix this by myself :) | |||||
2009-06-04 | Comment out unused variables / private fields to avoid compiler warnings. | Jeff Ames | 1 | -4/+4 | |
2009-06-04 | Comment out unused private functions to avoid compiler warnings. | Jeff Ames | 1 | -53/+53 | |
2009-06-02 | Thank you kindly, jonc, for a patch that: | Charles Krinke | 1 | -2/+2 | |
Grid mode only. Serialization and deserialization of byte representing Access Level is failing unless byte is ToString'd first on Grid Server. | |||||
2009-06-01 | Fixed AvatarCreationModule (I think) | MW | 1 | -1/+1 | |
2009-06-01 | trying to get panda to be able to read the AvatarCreationModule | MW | 1 | -544/+544 | |
2009-06-01 | part 1 of trying to get panda to be able to read the AvatarCreationModule | MW | 1 | -545/+545 | |
2009-06-01 | Some changes to the AvatarCreationModule to reduce the number of database ↵ | MW | 1 | -69/+86 | |
reads/writes. Still requires more work in this area. | |||||
2009-06-01 | Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵ | Jeff Ames | 54 | -54/+54 | |
LICENSE.txt. | |||||
2009-05-31 | Update svn properties. | Jeff Ames | 1 | -528/+528 | |
2009-05-30 | Added option (on my default) to the clone avatar function so that the ↵ | MW | 1 | -122/+141 | |
clothes and attachments that the target avatar is wearing, to begin with, are removed. So the end result isn't a merger of those clothes/attachments and the ones the template avatar is wearing. Added IPAddress ListenIPAddress property to BaseHttpServer so that the listening/binding IP can be set. | |||||
2009-05-30 | Made it so ( by default) the Clone avatar function, propagates the ↵ | MW | 1 | -21/+28 | |
permissions on the cloned items. This needs further testing to make sure all permissions are set correctly. | |||||
2009-05-30 | a few small changes to AvatarCreationModule | MW | 1 | -14/+17 | |
2009-05-30 | Added a AvatarCreationModule to the user server. This handles the "cloning" ↵ | MW | 3 | -0/+512 | |
of a existing avatar's inventory to another avatar's inventory (the base method will also create the inventory for a new avatar if the avatar doesn't alreayd have any inventory). The code also sets the target avatar as wearing whatever the template avatar was wearing (including attachments). The idea is to allow the use of this to give new avatars a more interesting avatar (and inventory set) than the current default. I have include a console command that will clone the inventory from one existing user (template avatar) to another existing avatar (target avatar). The format of the command is : "clone avatar <templateAvatarFirstName> <templateAvatarLastName> <targetAvatarFirstName> <targetAvatarLastName>" (to use this console command on new accounts, the "create user" command will need to be used first) While the code was designed for hooking up to a remote call from a web interface, I have left the hookup code out of this commit, as I believe most use cases will want to handle it differently. Also added a "trusted handler" to the inventory server to allow the user server to create new folders in a user's inventory. All this is in the old UGAIM servers so will need porting to the new servers. | |||||
2009-05-26 | Restoring the initial CAP Url to exactly what it used to be before Adam's ↵ | diva | 1 | -6/+13 | |
changes. Adam's code is still there, but commented, until we figure out what's going on. | |||||
2009-05-26 | * Fiddles with some login network code to attempt to fix login bug. | Adam Frisby | 1 | -1/+2 | |
2009-05-25 | * reseparate inventory item creator id and creator uuid | Justin Clarke Casey | 1 | -2/+3 | |
* unfortunately, while the client requires uuids and we want to be able to have arbitrary string ids, these cannot be kept in sync * I think the problems last time were due to a serialization change * So the major inteface version has been bumped to take care of any lingering issues here. * This means that region servers beyond this revision can only connect to similarly uptodate grid services, and vice versa | |||||
2009-05-25 | * Upped version number to 0.6.5 | lbsa71 | 3 | -6/+6 | |
2009-05-23 | * Implements automatic loopback handling for standalone regions. | Adam Frisby | 1 | -4/+6 | |
* This /should/ make OpenSim behave properly when hosting behind a NAT router and utilizing port forwarding (but the router doesn't support Loopback) | |||||
2009-05-23 | * Pipes IPEndPoint through all Login methods, including LLSD/OSD login paths. | Adam Frisby | 1 | -3/+3 | |
2009-05-23 | * Pipes requestors IP address through all XmlRpcRequest delegates. This is ↵ | Adam Frisby | 9 | -36/+42 | |
needed to be able to 'NAT-wrap' the login sequence. * If you have something using XmlRpc that isn't in core, change your method signature from: (XmlRpcRequest request) to: (XmlRpcRequest request, IPEndPoint remoteClient) | |||||
2009-05-20 | Remove the pre-log4net, discrete output methods from the consoles | Melanie Thielker | 6 | -9/+9 | |
2009-05-15 | Added PostInitialise method to IGridPlugin. | MW | 2 | -0/+6 | |
2009-05-14 | Small fix uncommenting something that got commented too much. | diva | 1 | -1/+1 | |
2009-05-12 | Thank you kindly, Patnad, for a patch that: | Charles Krinke | 1 | -2/+15 | |
This is to handle the changes in the v1.23 viewer of LL regarding the adult rating. With this patch a region can be changed to the adult rating from LL viewer v1.23 and above. | |||||
2009-05-08 | Thanks lulurun for a patch which addresses Mantis #3599: Exceptions when ↵ | Dahlia Trimble | 1 | -1/+1 | |
AssetInventoryServer receive a "DeleteItem" request | |||||
2009-05-04 | Intermediate commit. WILL NOT COMPILE! | Melanie Thielker | 30 | -8/+31 | |
2009-05-04 | Refactor. Make ConsoleBase a true base class. Create CommandConsole as a simple | Melanie Thielker | 8 | -12/+12 | |
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-04-29 | Flipping check_session xmlrpc's keep-alive to false, because some clients hang. | diva | 1 | -1/+1 | |
2009-04-23 | * refactor: move archive user inventory item serialization out to a separate ↵ | Justin Clarke Casey | 1 | -67/+6 | |
file | |||||
2009-04-22 | * Resolve http://opensimulator.org/mantis/view.php?id=3509 by putting some ↵ | Justin Clarke Casey | 3 | -16/+51 | |
service initialization into CommsManager * What is really needed is a plugin and interface request system as being done for region modules | |||||
2009-04-22 | * Fission OGS1UserServices into user service and OGS1 user data plugin ↵ | Justin Clarke Casey | 2 | -1/+2 | |
components * Make OGS1UserServices inherit from UserManagerBase * This allows grid mode regions to use the same user data plugin infrastructure as grid servers and standalone OpenSims |