Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-05-25 | When creating a new user, create the folders "Current Outfit", "Favorites", ↵ | Oren Hurvitz | 1 | -7/+4 | |
and the standard subfolders of "Calling Cards". (If we don't create them now then they'll be created later by the viewer, but why wait.) | |||||
2014-05-19 | Log the user when an inventory operation is blocked because the item/folder ↵ | Oren Hurvitz | 1 | -14/+14 | |
isn't in the Suitcase | |||||
2014-05-12 | Fixed error if a user didn't have a "Current Outfit" folder in their suitcase. | Oren Hurvitz | 1 | -9/+12 | |
This fixes http://opensimulator.org/mantis/view.php?id=7161 | |||||
2014-05-06 | Log whenever an inventory operation is blocked because the item/folder isn't ↵ | Oren Hurvitz | 1 | -8/+52 | |
in the Suitcase | |||||
2014-05-06 | - When sending the "My Suitcase" folder to the client, always claim it has ↵ | Oren Hurvitz | 1 | -7/+7 | |
Folder Type 8. (Previously we had used Folder Type -1 in one place, and LLClientView didn't even bother changing Folder Type 100 to anything else.) | |||||
2014-04-23 | Removed GetUserInventory(). It wasn't being used, and was creating warnings ↵ | Oren Hurvitz | 1 | -53/+0 | |
because it's Obsolete. | |||||
2014-03-24 | When a user logs-in, automatically create the Suitcase folder | Oren Hurvitz | 1 | -15/+7 | |
This is only done if the Suitcase Inventory Service is used. Previously the Suitcase was created at a later time, which meant that it wasn't shown in the viewer until the viewer was restarted. | |||||
2014-03-20 | If we find an existing suitcase folder in ↵ | Justin Clark-Casey (justincc) | 1 | -0/+4 | |
HGSuitcaseInventoryService.GetRootFolder(), then return that as a response rather than null. Fixes a regression from commit 346644016c529db6ed63aa866c7cf91cec1b635f (Fri Nov 15 23:10:59 2013) This is actually the reverse of zadark's patch in http://opensimulator.org/mantis/view.php?id=6969 But I'm assuming that was a mistake since clearly we should be returning this data - this was original behaviour | |||||
2013-11-15 | If HGSuitcaseInventoryService.GetRootFolder() fails to create a suitcase ↵ | Justin Clark-Casey (justincc) | 1 | -6/+13 | |
folder when required, then don't try to store the null and perform other operations on it. Patch from http://opensimulator.org/mantis/view.php?id=6844 Thanks Kira. | |||||
2013-07-21 | Better version of previous commit | Diva Canto | 1 | -2/+6 | |
2013-07-21 | Add the Current Outfit folder as an available folder in the SuitcaseInventory. | Diva Canto | 1 | -0/+16 | |
2013-07-09 | minor: remove mono compiler warnings from HGSuitcaseInventoryService | Justin Clark-Casey (justincc) | 1 | -3/+3 | |
2013-06-12 | After calls to GetSuitcaseXFolder() in HGSuitcaseInventoryService, ↵ | Justin Clark-Casey (justincc) | 1 | -1/+23 | |
consistently check for null return and log warning rather than throw exception. This was being done already in some places. If an exception is thrown it is now an error rather than debug | |||||
2013-02-27 | Switched to using the other Util function with a default value. | Diva Canto | 1 | -1/+2 | |
2013-02-27 | Moved the HG default variables out of [Startup] and into their own section ↵ | Diva Canto | 1 | -1/+1 | |
[Hypergrid] in *Common.ini.example. Backwards compatible for now. | |||||
2013-02-22 | Added new Util function for reading config vars that's more generic than the ↵ | Diva Canto | 1 | -1/+1 | |
one I added yesterday -- this is for helping move config vars out of [Startup] | |||||
2013-02-21 | Simplification of HG configs: HomeURI and GatekeeperURI now are defined as ↵ | Diva Canto | 1 | -2/+1 | |
default under [Startup]. They can then be overwritten in the other sections (but probably shouldn't). I kept the existing code for backwards compatibility, so this should not cause any breaks from people's current configurations. But people should move to have these 2 vars under [Startup] -- see OpenSim.ini.example and Robust.HG.ini.example. And yes, both names now end with "URI" for consistency. | |||||
2012-11-03 | HG Suitcase Inventory: if RootFolder type doesn't work, look for any folder ↵ | Diva Canto | 1 | -0/+9 | |
with parentID=UUID.Zero | |||||
2012-11-02 | HG: flip all configs to HG2.0. PLEASE CHECK YOUR EXISTING HG CONFIGS AGAINST ↵ | Diva Canto | 1 | -5/+5 | |
THESE. | |||||
2012-09-15 | More on HG2.0: added the possibility of controlling the appearance that ↵ | Diva Canto | 1 | -0/+1 | |
avies use to visit other grids. Not as good as I wanted, but good enough. Unfortunately we can't switch the appearance from under the avie without getting into a lot of weirdnesses because appearance is viewer-controlled. So instead, when this control is on, I'm disallowing HG-TP unless the user is wearing an allowed HG appearance -- the user gets a warning and needs to switch appearance. WARNING: I'm still not committing the config vars because this is still not ready for ppl to test. | |||||
2012-09-13 | Restarting to work on HGSuitcaseInventoryService: added the ability for the ↵ | Diva Canto | 1 | -4/+56 | |
outside world to retrieve appearance items. Not ACLed yet. | |||||
2012-06-30 | Remove some mono compiler warnings | Justin Clark-Casey (justincc) | 1 | -2/+2 | |
2012-04-07 | A few more minor improvements on Suitcase inventory service. | Diva Canto | 1 | -7/+6 | |
2012-04-06 | Better Suitcase Inventory Service. | Diva Canto | 1 | -48/+55 | |
2012-04-06 | Deleted the unused and commented code from 2 commits ago. | Diva Canto | 1 | -594/+0 | |
2012-04-06 | WARNING: LOTS OF COMMENTED AND UNUSED CODE IN THIS COMMIT. This is on ↵ | Diva Canto | 1 | -36/+712 | |
purpose; it's an historical record of what works and what doesn't wrt manipulating inventory at the viewer. I'll remove the unused code in a subsequent commit, but wanted to place it in history. The uncommented code works. | |||||
2012-03-29 | Finish up the SuitcaseInventory service. | Diva Canto | 1 | -120/+218 | |
2012-03-28 | HG 2.0: added the beginning of HGSuitcaseInventoryService. Plus moved the ↵ | Diva Canto | 1 | -52/+104 | |
hack away from ScenePresence. This is better but it still doesn't restore the inventory upon arrival. | |||||
2012-03-27 | Amend to previous commit regarding the config name. Bugs bite. | Diva Canto | 1 | -2/+0 | |
2012-03-27 | Send the config section name up to the service classes themselves ↵ | Diva Canto | 1 | -34/+6 | |
(XInventory and Assets). | |||||
2012-01-26 | HG Inventoty: Guard against items not found. | Diva Canto | 1 | -6/+7 | |
2012-01-12 | HG: normalize all externalized user ULRs to be the Home URL, i.e. the ↵ | Diva Canto | 1 | -3/+6 | |
location of the user's UAS. This corrects an earlier design which had some cases pointing to the profile server. WARNING: CONFIGURATION CHANGES in both the sims (*Common.ini) and the Robust configs (Robust.HG.ini). Please check diff of the example files, but basically all vars that were pointing to profile should point to the UAS instead and should be called HomeURI. | |||||
2011-05-27 | HG inventory transfers over the profile working. | Diva Canto | 1 | -0/+2 | |
2011-01-17 | Put the 'new' back to avoid a warning. Yes, we want to hide it. | Diva Canto | 1 | -1/+1 | |
2011-01-18 | minor: resolve some mono compiler warnings | Justin Clark-Casey (justincc) | 1 | -1/+1 | |
2010-12-01 | Added some comments. Better than listening to the boring speaker... | Diva Canto | 1 | -0/+7 | |
2010-11-25 | WARNING: LOTS OF CONFIGURATION CHANGES AFFECTING PRIMARILY HG CONFIGS. Added ↵ | Diva Canto | 1 | -8/+39 | |
capability to preserve creator information on HG asset transfers. Added a new HGAssetService that is intended to be the one outside the firewall. It processes and filters the assets that go out of the grid. Also fixed the normal AssetService to do special things for the main instance (console commands, etc). Moved HGInventoryService to OpenSim.Services.HypergridService. Changed the way the login service gets the ServiceURL configs. | |||||
2010-09-03 | minor: remove mono compiler warning | Justin Clark-Casey (justincc) | 1 | -1/+1 | |
2010-06-29 | Buglet fix in HG inventory. Make sure that GetRootFolder for non-HG ↵ | Diva Canto | 1 | -2/+2 | |
xinventory is the folder "My Inventory". Also changed the Suitcase folder name to "My Suitcase". | |||||
2010-01-31 | * Simplified the configuration by having [DatabaseService] in it | Diva Canto | 1 | -1/+1 | |
* Fixed configuration issue for HGInventoryServerInConnector * Corrected typos in debug messages | |||||
2010-01-31 | * Added a few files that were missing in the repo. | Diva Canto | 1 | -0/+302 | |
* New HGInventoryService which allows restricted access to inventory while outside | |||||
2009-06-15 | Moving these nice HG connectors to their homes. | diva | 1 | -242/+0 | |
2009-06-10 | Heart surgery no.2: the inventory service hooks. | diva | 1 | -18/+82 | |
Several improvements in the connectors themselves. Several improvements in configurations. Needed to add a hack in IUserService and UserManagerBase, to be removed when that service is refactored. | |||||
2009-06-07 | First draft of inventory service connectors, and service implementation. No ↵ | diva | 1 | -58/+57 | |
handlers yet, this is just the OUT part for now. It's not active and nothing in the simulator uses this yet. Just checking it in to start sharing with others. There are a couple of interesting software design points that could use other devs opinions. Hopefully I added all needed files. | |||||
2009-06-01 | Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵ | Jeff Ames | 1 | -1/+1 | |
LICENSE.txt. | |||||
2009-05-22 | Bug fix in HGAssetService. POSTs back home (standalone) should now work. | diva | 1 | -1/+1 | |
2009-05-22 | cleaning out warnings. | Dr Scofield | 1 | -1/+1 | |
NOTE: we currently have a gazillion warnings caused stuff flagged as "obsolete" (OGS1 stuff) --- what's up with that? | |||||
2009-05-18 | Finished HG Service Store. Not fully functional because of problems with ↵ | diva | 1 | -1/+12 | |
asset.ID insisting on being a UUID string. | |||||
2009-05-18 | Move the connectors under services for reasons of application logic. Remove | Melanie Thielker | 1 | -1/+1 | |
the user server skeleton in preparation for introducing a generic server | |||||
2009-05-17 | Renaming [ServiceConnectors] back to [Modules]. | diva | 1 | -4/+11 | |