aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-07-09corrected the params types on IClientAPI.SendParcelMediaCommand. the command ↵MW1-1/+1
parameter should be set to the the ParcelMediaCommandEnum value. While flags seems to need to be set to (uint)(1<<[value of the command enum])
2008-07-08small console message change related to last revisionMW1-1/+1
2008-07-08Added option to userserver config, to be able disable/enable the LLSD Login ↵MW1-0/+7
support. As far as I know, the LLSD login method is currently only used by libsl based clients/bots. So could be useful to be able to disable this if a grid comes under a griefing attack from libsl bots.
2008-07-08* Added experimental SendParcelMediaCommand and SendParcelMediaUpdate to ↵lbsa712-0/+33
IClientAPI. These methods have not been tested, but feel free to start wiring them to llParcelMediaCommandList.
2008-07-08* Changed casing of some archaic methods to conform with code standardslbsa711-10/+10
2008-07-08* Split out various classes from IClientAPI into their own files, in ↵lbsa7116-365/+437
accordance with code standards
2008-07-08RegionInfo.configMember can be null for dynamically created regionsDr Scofield1-0/+3
that are not backed by a file.
2008-07-08Mantis#1685. Thank you kindly, Mjm for a patch that:Charles Krinke1-1/+12
The attached patch tries to read the SVN revision from local file "svn_revision" before checking "../.svn/entries". This allows simulators not running from the source tree to properly display the SVN revision, if the installer generates the "svn_revision" file.
2008-07-07* remove redundant sync locking in AssetServerBase since this is already ↵Justin Clarke Casey5-26/+8
being done by the lower database layers
2008-07-07* remove unused CommitAssets() hook for nowJustin Clarke Casey4-17/+0
2008-07-07* Start scripts loaded from an archiveJustin Clarke Casey1-3/+3
2008-07-07adding support for IP EndPoint whitelisting in HttpServer code.Dr Scofield2-10/+24
2008-07-07switching to safer locks.Dr Scofield1-4/+6
2008-07-07further progress on HttpServer integration: OSHttpRequest can now beDr Scofield4-26/+65
instantiated from both .NET and HttpServer code path.
2008-07-06Copyright notices and formatting cleanup.Jeff Ames4-203/+230
2008-07-05changes prompting of create user console command to only ask for unspecified ↵Dahlia Trimble1-12/+16
parameters and avoid an exception if the wrong number of parameters are supplied
2008-07-05Changed default terrain lower limit to -100 instead of 100Dahlia Trimble1-1/+1
2008-07-04* Make default inventory grid server db mysql rather than sqliteJustin Clarke Casey1-2/+2
* This is to match all the other grid servers
2008-07-04Renaming UserManagerBase.SetUserProfile(UserProfileData) to Dr Scofield2-5/+13
UserManager.UpdateUserProfile(UserProfileData). Adding UpdateUserProfile(UserProfileData) to IUserService interface. Adding RemoteAdminPlugin.XmlRpcUpdateUserAccountMethod(...) to provide a remote update capability.
2008-07-04mini-warnings-safari, plus cleanup of IUserServices method naming.Dr Scofield3-52/+53
2008-07-04Mantis#1647. Thank you very much, Sempuki for a patch that:Charles Krinke2-62/+151
Updates the previous module loader work.
2008-07-03*Parcel Claim date is no longer Epoch (Jan 1, 1970). Now shows the actual ↵mingchen1-1/+1
creation/reclaim/sale date.
2008-07-02* Drop InvType from the assets table since it is no longer usedJustin Clarke Casey3-12/+0
* Migration should be automatic on sqlite and mysql * Migration is not automatic on mssql, you will need to drop the invType column manually * Migration should be fine, but as for any db change, I would recommend making sure you have backups before moving past this revision
2008-07-02Mantis#1647. Thank you kindly, Sempuki for a patch that:Charles Krinke1-5/+70
attached patch adds support to constrain the number of plugins that can be loaded per extension point.
2008-07-01Mantis#1639. Thank you, Melanie for a patch that:Charles Krinke1-0/+201
Reads estate_settings.xml and populates the database from it. If there is no record, just passes the defaults to the application.
2008-06-30add the ability to cherry pick expire something from the assetSean Dague1-0/+24
cache. Bandaid until we rethink the caches a bit more.
2008-06-30Mantis#1637. Thank you kindly, Melanie for a patch that:Charles Krinke2-34/+50
Make each region load it's settings from the database on startup. No user functionality yet.
2008-06-30Update svn properties.Jeff Ames2-135/+135
2008-06-30properly explaining each #pragma warning disableDr Scofield2-26/+39
massaging OSHttpRequestPump to not abort on exceptions...
2008-06-29disabled the multiple inventory server support in login service again.MW3-134/+64
And reverted CachedUserInfo back to revision 5262. I don't think most of the inventory problems that people are reporting are due to these, but its easier to deal with one set of potential problems at a time, and I'm not going to get any time in the week to work on this anyway.
2008-06-29patch and files from mantis #1630, Thanks MelanieMW2-1/+301
2008-06-29couple of small fixes to try to fix support for multiple inventory servers ↵MW1-2/+14
in the loginservice
2008-06-28small change to see if that helps with the inventory problems.MW1-1/+1
2008-06-28more disabling multiple inventory server support in LoginServiceMW1-2/+2
2008-06-28Mantis#1626. Thank you kindly, Melanie for a patch that:Charles Krinke1-2/+2
Fixes IAvatarService for grid and standalone modes
2008-06-28more work on the support for multiple inventory servers. MW1-3/+3
The Login service should now read/create new inventory on the inventory server that is set in a users profile. Also added "Add-InventoryHost" console command to add a support for a new server to a region. So it would be good if someone could test this. Set up the grid as normal, but then also run extra inventory server on a different computer (well actually it just has to be on a different network hostname, so one using "http://localhost:8004" and one using "http://127.0.0.1:8005" should work) then you need to manually edit the user profile database to set the new servers url in a user's "userInventoryURI" field. Then on a region server, use the Add-InventoryHost to add the new server url (always include the full url, including http, but don't add a final /) Login with that account and see if the inventory works. Of course these needs to be made more user friendly.
2008-06-28Extracted the Avatar appearance functions out of the IUserService interface ↵MW2-5/+12
and moved them into a IAvatarService Although "out of the box", there is no actual functional change to behavior
2008-06-28Mantis#1616. Applied Melanie's patch. This may or mayCharles Krinke1-0/+6
not break trunk.
2008-06-28plumbing for multiple inventory servers. Mostly done on the region server side. MW7-35/+198
TODO next is to make the login server read/write a users inventory from the correct server (the inventory url set in a userprofile) On the region side, although not tested with multiple servers it should work if that inventory url was set, and the inventory servers urls have been added to the CommunicationsManager, using CommunicationsManager.AddInventoryService(string hostUrl)
2008-06-28* Various documentation to some black magic parts of LLClientView Teravus Ovares1-0/+2
* Added IClientAPI.SendTexture stub.
2008-06-27dr scofield's warning safari:Dr Scofield13-33/+35
* commented out [Obsolete(....)] attributes where no replacement feature was available: if we want to attribute code that we think needs to be reworked, we should define a new attribute and use that instead (together with a little tool to retrieve all the attributed code then) * commenting out unused variables
2008-06-27* restore suppression of mono addins manager warningsJustin Clarke Casey1-4/+3
2008-06-27dr scofield's warning safari: hunting down those little buggersDr Scofield4-6/+7
2008-06-27status: work-in-progress, non-functionalDr Scofield3-0/+165
fleshing out OSHttpRequestPump code.
2008-06-27status: work in progress, non-functionalDr Scofield2-41/+127
having OSHttpHandler as a delegate was not too hot, i'm refactoring it into an interface.
2008-06-27Mantis#1591. Thank you graciously, Sempuki for a patch that:Charles Krinke4-5/+132
Currently module loading is done ad-hoc. I propose creating a simple loader class that leverages Mono.Addins (and perhaps the new .NET addins when they become available in mono). Attached is a basic patch for review that compiles into HEAD, but doesn't yet replace any existing ad-hoc loaders.
2008-06-26Update svn properties. Minor formatting cleanup.Jeff Ames2-10/+3
2008-06-26As per the suggestion on the mailing list, added support for a OpenSim.xml ↵MW3-7/+7
config file, instead of a ini file. INI files still work the same as they did before, just now if a ini file isn't found, it looks for a OpenSim.xml file (of course in xml format) and if found uses that. Includes a OpenSim.Example.xml for reference (the default settings saved as a xml file).
2008-06-26WORK-IN-PRGRESS: beware of falling pieces and shifting Dr Scofield1-0/+53
tectonic plates: starting AddHandler() code.
2008-06-26Mantis#1597. Thank you, Melanie for a patch that:Charles Krinke1-0/+2
Adds handlers for the reclaim land functionality, plus all needed permissions checks.