aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Upped version number to 0.6.5lbsa712009-05-252-6/+6
|
* * Pipes requestors IP address through all XmlRpcRequest delegates. This is ↵Adam Frisby2009-05-231-20/+20
| | | | | | | | | | 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)
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2009-05-222-6/+1
| | | | | | - Fix typographical error in RPC response. - Remove obsolete commentary.
* Hooked up the RestRegionPlugin Get Region/xxx/terrain so it outputs xml ↵MW2009-05-211-2/+6
| | | | | | | | containing the terrain heightmap rather than the old "terrain not implemented" message. The format of the terrain data is: the floats encoded in Base64 and serialised into xml. So I think far from ideal, but as the support for outputting that format was already there... Still need to hook up a method for remotely loading this data.
* Add copyright headers, formatting cleanup.Jeff Ames2009-05-201-5/+5
|
* Remove the old asset cache and local services and the configurations for themMelanie Thielker2009-05-181-2/+2
|
* logging ACL list additionsDr Scofield2009-05-181-1/+2
|
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2009-05-181-1/+18
| | | | | | | | | Fixes: [1] Sharing exception on remote OAR management [2] Occasional 505 error talking to Tomcat [3] Occasional mono aborts caused by mlog in the script engine's app domain (mono 2.4)
* fixing XmlWriter problemDr Scofield2009-05-185-99/+124
|
* Heart surgery on asset service code bits. Affects OpenSim.ini configuration ↵diva2009-05-154-13/+14
| | | | | | | | | | | | -- please see the example. Affects region servers only. This may break a lot of things, but it needs to go in. It was tested in standalone and the UCI grid, but it needs a lot more testing. Known problems: * HG asset transfers are borked for now * missing texture is missing * 3 unit tests commented out for now
* * Improve loadregions so that all region configs are checked for clashes ↵Justin Clarke Casey2009-05-141-20/+15
| | | | (e.g. same uuid) rather than just one
* * refactor: move bottom part of 'xml2' serializaton to separate classJustin Clarke Casey2009-05-141-1/+0
|
* more fixes to default avatar appearance creationDr Scofield2009-05-121-14/+18
|
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2009-05-121-39/+34
| | | | | | Change updateAppearance so that nothing is done to the user's appearance unless explicitly requested.
* partially fixing avatar appearance codeDr Scofield2009-05-121-58/+62
|
* Fixed handling of inventory a bitHomer Horwitz2009-05-091-8/+8
| | | | | | | | | - AssetType isn't InventoryType. Those enums contain different numbers. Use AssetType for the asset type, InventoryType for the inventory type. - The ToString method (or ToLower) of AssetType/InventoryType doesn't necessarily return the correct LLSD string. - Replaced several magic numbers by their corresponding enum. - Fixed the invType for gestures and animations in the library. This should fix Mantis #3610 and the non-terminating inventory loading
* RemoteAdminPlugin was using a mixture of both "true"/"false" and 0/1Dr Scofield2009-05-071-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)
* From: Alan M Webb <alan_webb@us.ibm.com>Dr Scofield2009-05-071-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.
* * If an item creator id contains an iar loaded name, create a temporary ↵Justin Clarke Casey2009-05-051-36/+4
| | | | profile and hashed UUID to represent the user
* Add copyright header. Formatting cleanup. Ignore some generated files.Jeff Ames2009-05-052-5/+5
|
* Intermediate commit. WILL NOT COMPILE!Melanie Thielker2009-05-0414-5/+16
|
* * Initial infrastructure for ospa only uuid hashing of retrieved inventory itemsJustin Clarke Casey2009-05-041-6/+23
|
* Thanks BlueWall for Mantis #3578 - adding Hypergrid connection to JSON StatsDahlia Trimble2009-05-041-0/+2
|
* Thank you kindly, BlueWall, for a patch that:Charles Krinke2009-05-021-0/+2
| | | | | | | | | Move json stats to non-published resource name Remove well-known resource name for json stats, creating dynamic uris with private keys and add a user configurable resource name for region owner usage.
* * minor: remove some mono compiler warningsJustin Clarke Casey2009-04-291-1/+1
|
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2009-04-291-9/+67
| | | | | | | | | | | | | | | | | | Added two new (optional) attributes to create_user and update_user requests. <gender> - can be 'm' or 'f'. 'm' is default if not specified. <model> - specifies another, existing, avatar that should be used as an appearance prototype for this user. If <model> is specified, then <gender> is ignored. If <model> is not specified, then 'm' implies a model avatar of "Default Male", and 'f' implies a default of "Default Female". At the moment the inventory is not copied. This change means that an avatar will only look like ruth if none of the possible models exist in the user database.
* From: Alan Webb <alan_webb@us.ibm.com> & Dr Scofield <drscofield@xyzzyxyzzy.net>Dr Scofield2009-04-291-41/+191
| | | | | | | | | | | - Adds an admin_modify_region call to allow changing of parcel voice settings and changing of public/private status - add boolean "public" and boolean "enable_voice" to admin_create_region XmlRpc call to allow specifying of public/private status and to allow enabling voice for all parcels; also added config variables to allow setting of defaults for those - fixing cut-and-paste artefacts
* From: Alan M Webb <alan_webb@us.ibm.com>Dr Scofield2009-04-271-1/+287
| | | | | | | | | | | Added support for access control lists. Scene: Added test to AddNewClient for an entry in the access list when connecting to a region with limited access. EstateSettings: Added an HasAccess(UUID) property to test for an entry in the estate's access list. RemoteAdmin: Add RPC calls for admin_acl_list, clear, add, and remove.
* Add copyright headers. Formatting cleanup.Jeff Ames2009-04-271-45/+45
|
* Getting rid of -hypergrid=true on the command line. This config now goes ↵diva2009-04-271-15/+1
| | | | inside OpenSim.ini in the Startup section. This makes the HG compatible with -background, and prepares the way for further work on HG-related config vars. Might help with mantis #3527.
* Remove some debug messages I have forgotten to take out.Homer Horwitz2009-04-261-2/+0
|
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2009-04-242-2/+450
| | | | | This commit adds RestFileServices to the REST ApplicationPlugin service.
* * Fix hypergrid standalone login by overriding AddNewUserAgent in HGUserServicesJustin Clarke Casey2009-04-221-4/+11
|
* * Resolve http://opensimulator.org/mantis/view.php?id=3509 by putting some ↵Justin Clarke Casey2009-04-221-27/+9
| | | | | | | | service initialization into CommsManager * What is really needed is a plugin and interface request system as being done for region modules
* * Resolve http://opensimulator.org/mantis/view.php?id=3509 by passing up the ↵Justin Clarke Casey2009-04-221-7/+10
| | | | comms manager rather than null
* * Fix the other windows build break. Hopefully that shoudl be the last oneJustin Clarke Casey2009-04-221-0/+1
|
* * Fission OGS1UserServices into user service and OGS1 user data plugin ↵Justin Clarke Casey2009-04-221-0/+4
| | | | | | | | | 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
* Fixes Mantis # 3469. Thank you kindly, BlueWall, for a patch that:Charles Krinke2009-04-171-1/+4
| | | | | | | This patch adds extended status reporting with the url http://server:port/simstatusx/ [^] . The data is returned in json format as "text/plain" type.
* * Run RemoteAdminPlugin user info queries through cache service rather than ↵Justin Clarke Casey2009-04-171-10/+18
| | | | direct
* Adds a new REST service /admin/regioninfo/ --- will return aDr Scofield2009-04-172-0/+144
| | | | | | | | | | | | | | | | comprehensive list of all regions in one go (in contrast to the /admin/regions/ REST call). Example: % curl http://127.0.0.1:9000/admin/regioninfo/ <regions max="10" number="1"> <region avatars="0" external_hostname="127.0.0.1" ip="0.0.0.0:9000" master_name="Mr X" master_uuid="b757d5f9-7b36-4dda-8388-6e03dd59b326" name="London" objects="6" uuid="49253666-a42e-4f44-9026-d23f93af31d7" x="1000" y="1000"/> </regions>
* Add a console command facility to the RemoteAdmin plugin.Melanie Thielker2009-04-151-0/+47
|
* Adds session authentication upon NewUserConnections. Adds user key ↵diva2009-04-141-5/+5
| | | | authentication (in safemode only) upon CreateChildAgents. All of this for Hypergrid users too. This addresses assorted spoofing vulnerabilities.
* Add the RegionLoaded(Scene) API to the new region module interface to allowMelanie Thielker2009-04-141-0/+20
| | | | | | | region modules to use another region module's interfaces and events in a scene context
* Fix ordering of operations: First initialize everything, then add regionsHomer Horwitz2009-04-131-0/+6
|
* * Make it possible to store creator strings in user inventory items as well ↵Justin Clarke Casey2009-04-081-4/+4
| | | | | | | | | as UUIDs * All existing functionality should be unaffected. * Database schemas have not been changed.
* - Add new RegionModulesControllerPlugin to the application modulesHomer Horwitz2009-04-052-0/+205
| | | | | | | | - Change several classes to use the new plugin for handling of region-modules (NOTE: No regionmodule is using this yet) - Add necessary prebuild parts (don't forget to runprebuild) Attention: Work in progress. This shouldn't break anything, but you never know...
* * Upped trunk version number to 0.6.4 as we just tagged 0.6.4-releaselbsa712009-04-012-4/+4
|
* * Refactored out and de-duplicated Base64ToString(string)lbsa712009-03-311-7/+1
| | | | | * Fixed minor typo
* Update svn properties, add copyright header, formatting cleanup.Jeff Ames2009-03-311-1/+1
|
* Another bit of refactoring to try to make sense of ↵diva2009-03-291-1/+2
| | | | OpenSim.Framework.Communications. Everything that looks like a service, with service handlers, moved to .Services -- i.e. LoginService and Response, and GridInfoService. The rest of the changes were to adapt to the new locations of those files.