aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Adds initial support for the MXP Virtual Worlds protocol ↵Adam Frisby2009-02-222-0/+0
| | | | | | | | | | | | (http://www.bubblecloud.org) * Handled via the MXPModule.cs located in OpenSim.Client.MXP namespace. * Also implements MXPClientView and MXPPacketServer for IClientAPI compatibility. * No changes were required to Core to implement this - the thing is self contained in OpenSim.Client.MXP.dll. * Includes reference implementation of MXP as MXP.dll - this is under the Apache 2.0 license. * Requires OpenSim.ini setting to enable. "[MXP] \n Enabled=true \n Port=1253" * May break. Highly untested.
* Thank you, robsmart, for a patch that allows the shard to be set.Melanie Thielker2009-02-211-0/+4
| | | | | | | | The built-in default is OpenSim, unless a user server url is given, then that is used, unless "shard" is also goven, then shard takes precedence. The defult in OpenSim.ini is "OpenSim" for compatibility.
* Safe to remove remoting_listener_port out of OpenSim.ini.diva2009-02-201-1/+0
|
* * It think it actually works now. Only that AssetService weirdness left to fix.lbsa712009-02-191-0/+0
| | | | | * Ignored some gens
* * Okay, so finally got my head around this. Problem is that upstream ↵lbsa712009-02-191-0/+0
| | | | | | | | | | | | | Prebuild copied dlls promiscuously, and this led to the references being all mixed up (/bin dlls overwritten by different versions on every csc) * Something that thus needs fixing is the fact that ProjectReferences has to be marked <ProjectReference> <Private>False</Private> </ProjectReference> but that is not configurable in the upstream Xml Schema. I've hardcoded it in our repo for now.
* * reverted the revert of the revert. What can I say? I'm calling this a day, ↵lbsa712009-02-191-0/+0
| | | | and will get back up on the horse tomorrow.
* * Reverted the revert, as it seems the problem was the 1.0.* in the separate ↵lbsa712009-02-191-0/+0
| | | | projects.
* * Reverted Prebuild commit due to strange run-time errors.lbsa712009-02-191-0/+0
|
* * ... okay, so the Prebuild.exe changed again when building from VS... ↵lbsa712009-02-191-0/+0
| | | | trying to get to the bottom of this.
* * Hm. Something odd here, the Prebuild.exe wasn't supposed to change from ↵lbsa712009-02-191-0/+0
| | | | | | | | last commit. Re-trying. * Ignoring some gens
* === PREBUILD UPSTREAMS UPDATE : POTENTIAL BREAKAGE ===lbsa712009-02-191-0/+0
| | | | | | | | | | | | | | | | | | | | | | | * Applied upstreams changes to allow for auditing and debugging in our various environments. * This should, in theory, bring back 'multiple ref dirs'. * Temporarily Removed xmlns because prebuild-1.7 schema does not allow for multiple solutions per prebuild node (This will be a moot issue once the Prebuild node is moved out of prebuild.xml) * Autotools target: Various minor fixes * MonoDevelop Target : No changes. * Nant Target: Various minor fixes, support for net-3.5 and mono-2.0/3.5 targets * Sharpdevelop targets: No changes. * VS Targets: Refactored into using VSGenericTarget, and supports 2.0-3.5 * XCode Target: No changes. --- Regressions and outstanding issues --- * The Solution is assigned a random Guid - will lead to unnecessary reloads and loss of user settings. --- New features of Prebuild 2.0.4 --- * (Better) support for Web, WinForms and Database Projects and build actions * Conditional Framework Version compilation support (1.1, 2.0-3.5) * ArrayList -> List<>, ICollection -> IList (this means Prebuild can generate 1.1 solutions, but can't itself be built under 1.1 - how very meta) * Added <?include file="sub_prebuild.xml" ?> preprocessor directive.
* From: Alan Webb <awebb@linux.vnet.ibm.com>Sean Dague2009-02-181-2/+2
| | | | | | | I've changed the extension point name, and the internal references that used the same string. I also fixed up the messaging around the asset loader so that it is more explicit.
* * fixed 'path' reference attribute for Nant and VS2008 targets.lbsa712009-02-171-0/+0
|
* From: Alan Webb <awebb@linux.vnet.ibm.com>Sean Dague2009-02-162-1/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The change makes two principal implementation changes: [1] It removes the hard coded set of possible asset server client implementations, allowing any arbitrary implementation that has been identified to the PluginLoader as an appropriate extension. The extension point for asset server client extension is /OpenSim/AssetServerClient. All of the old configuration rules have been preserved, and any of the legacy configuration values will still work as they did before, except the implementation is now loaded as a plug-in, rather than as a hard-coded instantiation of a specific class. The re-hashing of IAssetServer as an extension of IPlugin made upgrading of the implementation classes a necessity. Caveat: I have not been able to meaningfully test the crypto-grid clients. I believe they should work correctly, but the refactoring necessary to handle plug-in based initialization (vs constructor-based initialisation) admits the possibility of a problem. [2] The asset cache implementation, previously introduce as a hard-code class instantiation is now implemented as an IPlugin. Once again the previous (configurationless) behavior has been preserved. But now it is possible for those interested in experimenting with cache technologies to do so simply by introducing a new extension for the asset cache extension point (/OpenSim/AssetCache). I've tested all of the configuration settings, after applying the patch to a newly extracted tree, and they seem to work OK.
* - replace existing license header in each source file inMike Mazur2009-02-161-25/+17
| | | | | | | AssetInventoryServer with the standard OpenSim license header - add note about Cable Beach to CONTRIBUTORS.txt - clean up AssetInventoryServer.ini.example
* - add restrictions and error handling to plugin loading inMike Mazur2009-02-161-8/+8
| | | | | | | | AssetInventoryServer - assign shorter names to each AssetInventory plugin - modify AssetInventoryServer.ini.example file so it works out of the box
* Name extension points a little clearer.Mike Mazur2009-02-161-2/+2
|
* - remove dependency on OpenSim.Grid.AssetServer.Plugins.Opensim inMike Mazur2009-02-161-2/+2
| | | | | | | | OpenSim.Data.*.addin.xml, this is cruft left over from previous testing - fix example SQLite connection string in AssetInventoryServer.ini.example
* - change AssetInventoryServer config from XML to INIMike Mazur2009-02-162-6/+62
| | | | | | - convert AssetInventoryServer logging to OpenSim's log4net - updated AssetInventoryServer.ini.example file
* - remove dependency on ExtensionLoader.dll (DBConnString.cs can go)Mike Mazur2009-02-161-153/+107
| | | | | | | - bring config system in line with other servers - add new plugin filter class which filters on ID - update AssetInventoryServer.ini file
* Add OpenSim & Simple inventory storage plugins and Null metrics plugin.Mike Mazur2009-02-161-1/+1
|
* Added OpenSim asset frontend plugin.Mike Mazur2009-02-161-7/+10
|
* Rename NewAssetServer AssetInventoryServer and fully qualify withMike Mazur2009-02-163-21/+21
| | | | | OpenSim.Grid.AssetInventoryServer.
* AddingMike Mazur2009-02-162-0/+174
| | | | | | | - NewAssetServer code - NewAssetServer addin manifest - example AssetServer.ini file
* Thank you, DoranZemlja, for a patch that addresses some moe llGetNextEmailMelanie Thielker2009-02-151-0/+19
| | | | | | | issues. Fixes Mantis #3145.
* * Added XEngine tests and gathered other ScriptEngineSean Dague2009-02-121-0/+0
| | | | | | | Tests together From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
* From: Christopher Yeoh <yeohc@au1.ibm.com>Dr Scofield2009-02-111-0/+11
| | | | | | | | | | | | | | | This changeset add the RegionReady module code. The module sends a message on a configurable channel when an oar file has finished loading or if the script engine has emptied its queue for the first time (eg server startup). Config is something like this: [RegionReady] enabled = true channel_notify = -800 The module also knows if there was an error with startup.
* dropping obsolete XIRC section from OpenSim.ini.exampleDr Scofield2009-02-101-10/+0
|
* fix region_limit example in OpenSim.ini.exampleDr Scofield2009-02-101-2/+2
|
* * minor: Apply second patch from ↵Justin Clarke Casey2009-02-061-0/+5
| | | | | | | | | | http://opensimulator.org/mantis/view.php?id=3089 * This adds more explanation for the new proxy settings in OpenSim.ini.example * Also does some formatting correction * I did some additional reformatting on top of that
* Thanks cmickyb for a patch (Mantis#3089) that adds support for proxy in http ↵Dahlia Trimble2009-02-061-0/+4
| | | | requests
* * Introduce a new "default" option for asset_database in the [STORAGE] sectionJustin Clarke Casey2009-02-041-2/+11
| | | | | | | | * This option makes OpenSim use the usual db based asset service in standalone, and the grid based one in grid mode * The other options can (local, grid, etc) can still be used explicitly as before * Also change OpenSim.ini.example and the surrounding explanative text
* * Address http://opensimulator.org/mantis/view.php?id=3076 by actually ↵Justin Clarke Casey2009-02-031-1/+2
| | | | | | | | eliminating the redundant enable = true commented example * Comment out some startup verbosity from the module if we haven't enabled it
* Embed OpenSim.Data.addin.xml as a resource into OpenSim.Data.dll.Mike Mazur2009-02-031-21/+0
|
* - moved data plugin loading code from various places toMike Mazur2009-02-031-12/+7
| | | | | | | | OpenSim/Data/DataPluginFactory.cs - removed dependencies on a few executable assemblies in bin/OpenSim.Data.addin.xml - trim trailing whitespace
* - move OpenSim/Framework/IUserData.cs to OpenSim/Data/IUserData.csMike Mazur2009-02-031-1/+1
| | | | | - trim trailing whitespace
* - move OpenSim/Framework/IInventoryData.cs toMike Mazur2009-02-031-1/+1
| | | | | | OpenSim/Data/IInventoryData.cs - trim trailing whitespace
* Rename IAssetProviderPlugin to IAssetDataPlugin aligning with the other data ↵Mike Mazur2009-02-031-1/+1
| | | | plugins.
* * Make the fact that there is a setting to control which instant message ↵Justin Clarke Casey2009-02-021-0/+6
| | | | module is used explicit in OpenSim.ini.example
* * Make it more obvious that there is an enabled switch for chat in ↵Justin Clarke Casey2009-02-021-1/+9
| | | | | | | | OpenSim.ini.example. * Add default information for other chat settings
* * Changing the ode collision filter to 'off by default' instead of 'on by ↵Teravus Ovares2009-02-021-1/+1
| | | | default'. It needs to be improved more.
* * Adding the Tree module configuration options to OpenSim.ini.exampleTeravus Ovares2009-02-021-0/+8
| | | | | | | * Adding an option to use the tree module to manage the trees in the simulator (grow/reproduce/die) * Setting it to off by default in an effort to reduce the number of threads in use by default * You can also turn it on in a 'one off' way with 'tree active true' on the console. To 'one off' turn it off, it's 'tree active false'. The permanent way to do that, however is in the opensim.ini.
* * In OpenSim.ini.example, list defaults for AllowOSFunctions and ↵Justin Clarke Casey2009-01-301-4/+7
| | | | OSFunctionThreatLevel and change existing OpenSim.ini.example settings
* + adding URI substitution for concierges broker URIDr Scofield2009-01-261-0/+7
|
* Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke2009-01-232-0/+0
| | | | | | | | | | | | | * Added Npgsql.dll and Mono.Security.dll which are NpgsqlDriver dlls. * Added missing field to schema creation scripts: PathTaperY. * Added schema creation scripts for PostgreSQL. * Added unit test classes for PostgreSQL. * Added schema creation script folder to NHibernate project in prebuild.xml * Added Npgsql.dll to NHibernate test project dependencies in prebuild.xml * Ensured that build works with both nant and Visual Studio. * Executed build unit tests with nant and NHibernate unit tests with NUnitGUI - Couple of region tests fail due to double precission float rounding errors need to sort out how these are handles in unit tests and if higher precission numeric field needs to be used in Postgresql.
* Implement missing LSL TEXTURE_xxx constants including two new textures.idb2009-01-224-0/+42
| | | | | Fixes Mantis #3030
* - remove extra "; in http_loginform.html.example; fix issue 3025Mike Mazur2009-01-211-2/+2
| | | | | | - sync up default HTML generated in LoginService.cs with that in http_loginform.html.example
* * Progressive texture patch + PriorityQueue put into the LLClient namespace.Teravus Ovares2009-01-196-0/+0
| | | | | * Updates LibOMV to r2362
* Added an optional password for the IRC moduleDahlia Trimble2009-01-181-0/+2
|
* * Added resolving explicit .exe project names. This fixes mantis #2967lbsa712009-01-131-0/+0
|