aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/HypergridService/HGRemoteAssetService.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-14/+61
2017-01-05Massive tab and trailing space cleanupMelanie Thielker1-1/+1
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-6/+28
2015-08-01Mantis #7657 and #7514. This should alleviate the problem of bad object ↵Diva Canto1-0/+22
assets being passed around via HG and archives. No guarantees that all the leaks have been found, but at least it detects and fixes these bad assets upon: (1) storing and getting assets over HG -- assuming the core HG asset service is being used (not the case with OSGrid!) (2) importing assets via OAR and IAR Instantiation of bad assets now should also work, instead of producing an exception, but the bad assets themselves aren't being fixed in the DB. That should be done with a cleaning tool -- see Perl script in Mantis #7657. Virus!
2015-05-05Refactored some code that is used in two different dlls related to SOP ↵Diva Canto1-1/+1
rewriting. Also added some unit tests that relate to mantis #7514
2014-11-25When processing incoming attachments via HG, if a request for uuid gathering ↵Justin Clark-Casey (justincc)1-1/+1
or final asset import takes too long remove remaining requests from same user to prevent hold up of other user's incoming attachments. This improves upon the earlier naive simply queueing immplementation. Threshold is 30 seconds. If this happens to a user they can relog and fetch will be reattempted.
2014-03-24HGAssetService searches for the "HomeURI" setting in several sections: ↵Oren Hurvitz1-4/+4
Startup, Hypergrid, HGAssetService Resolves http://opensimulator.org/mantis/view.php?id=6940
2012-11-15Revert "Merge master into teravuswork", it should have been avination, not ↵teravus1-23/+3
master. This reverts commit dfac269032300872c4d0dc507f4f9062d102b0f4, reversing changes made to 619c39e5144f15aca129d6d999bcc5c34133ee64.
2012-09-21Minor: change the return value of unsuccessful posts to string.Empty.Diva Canto1-1/+1
2012-09-20Improvement over last commit: refactor the asset permissions code, so that ↵Diva Canto1-58/+5
it can be used by both the HG Asset Service and the simulator. Also renamed the config vars to something more intuitive
2012-09-20More HG2.0: Added permission policies in HGAsset Service based on asset ↵Diva Canto1-3/+76
types. The policies are given in the config. This is only half of the story. The other half, pertaining to exports/imports made by the sim, will be done next.
2012-03-27Send the config section name up to the service classes themselves ↵Diva Canto1-2/+2
(XInventory and Assets).
2012-01-12HG: normalize all externalized user ULRs to be the Home URL, i.e. the ↵Diva Canto1-4/+7
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-10-15Guard HGAssetService against uninitialized variables and null arguments.Diva Canto1-0/+3
2010-12-01Added some comments. Better than listening to the boring speaker...Diva Canto1-0/+5
2010-11-29Preservation of creator information now also working in IARs. Cleaned up ↵Diva Canto1-42/+2
usage help. Moved Osp around, deleted unnecessary OspInventoryWrapperPlugin, added manipulation of SOP's xml representation in a generic ExternalRepresentationUtils function.
2010-11-26Creator information preserved upon HG transfers.Diva Canto1-1/+0
2010-11-25WARNING: LOTS OF CONFIGURATION CHANGES AFFECTING PRIMARILY HG CONFIGS. Added ↵Diva Canto1-0/+181
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.