aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/prebuild.xml (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-04-22* Fix windows build from last commitJustin Clarke Casey1-0/+1
2009-04-22* Committing stub VW-over-HTTP ClientStack. (2/2)Adam Frisby1-0/+28
* Minor MRM tweak.
2009-04-18Thank you kindly, MCortez, for a patch that:Charles Krinke1-0/+4
Added is a patch that adds a rough Groups implementation. This patch allows the creation, adding and maintaining Groups, Roles and Members. Work has begun on a very naive implementation of messaging, and minimal support for notifications {no attachments yet}. Proposals are not yet supported, but are on the to-do list. This implementation is not active by default, and must be configured in OpenSim.ini to become active.
2009-04-17Fixes Mantis # 3469. Thank you kindly, BlueWall, for a patch that:Charles Krinke1-0/+2
This patch adds extended status reporting with the url http://server:port/simstatusx/ [^] . The data is returned in json format as "text/plain" type.
2009-04-15Add the XML manifests needed to get the new style modules to load.Melanie Thielker1-0/+2
Scripting now works again
2009-04-11* Instead of referencing mesh stuff in the physics plugin.. change the IMesh ↵Teravus Ovares1-1/+0
Interface. (blame prebuild)
2009-04-10* Tweak prebuild #2Teravus Ovares1-1/+1
2009-04-10* Fixes missing meshing reference.Teravus Ovares1-6/+9
2009-04-09* Moved the DatabaseTestAttribute to Test.Common, and thus included ref to ↵lbsa711-0/+4
that in all db tests. *phew*
2009-04-05And another fix for the windows buildHomer Horwitz1-0/+1
2009-04-05Try another fix for the Windows build breakHomer Horwitz1-0/+1
2009-04-05Fix windows build break. Hopefully.Homer Horwitz1-0/+1
2009-04-05- Add new RegionModulesControllerPlugin to the application modulesHomer Horwitz1-0/+29
- 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...
2009-04-05* Committing what I have on the BulletDotNETPlugin that I have so far. Teravus Ovares1-0/+28
* It's not ready to try. It doesn't do what you expect in many ways. * It throws errors and prints jibberish on the console * Test it out only if you're brave and you've backed up first. * The opensim.ini line is physics = BulletDotNETPlugin
2009-03-31Thank you kindly, MCortez for a patch that:Charles Krinke1-1/+6
With some support from HomerH, this patch adds support for Wind Model plugins via the mono.Addin framework. * Adds console & OSSL access to Wind Parameters * Adds plug-in support for custom wind models * Provides two example Wind Model plug-ins Documentation for the wind module is temporarily located at http://code.google.com/p/flotsam/wiki/CoreWindModule [^] -- will move this documentation to http://opensimulator.org [^] after the patch has been committed.
2009-03-27* This updates LibOMV to the current release 0.6.0 on March 19 2009Teravus Ovares1-2/+2
* Important: HttpServer.dll was changed to HttpServer_OpenSim.dll so that the HttpServer references do not conflict if you've copied the OpenMetaverse.Http.dll and requirements to the OpenSimulator bin folder. This means that if you reference HttpServer.dll in any projects, you will need to change the reference to HttpServer_OpenSim.dll. It still uses the Same HttpServer namespace though.
2009-03-26* Ooops, wasn't that - it was the lack of a Types reference isnteadJustin Clarke Casey1-0/+1
2009-03-26* Add missing '.dll' to Serialization OpenMetaverse use to fix windows build ↵Justin Clarke Casey1-1/+1
break
2009-03-26* iars: Serialize information about item creators to archiveJustin Clarke Casey1-1/+3
2009-03-16Rename OpenSim.Framework.Archive to OpenSim.Framework.SerializationMike Mazur1-4/+4
Update using statements and prebuild.xml. Also trim trailing whitespace.
2009-03-12Move ArchiveConstants to OpenSim.Framework.ArchiveMike Mazur1-33/+31
- move a couple constants from InventoryArchiveConstants to ArchiveConstants, now only one of these is needed - change InventoryArchiveConstants references to ArchiveConstants - remove InventoryArchive AssetInventoryServer plugin dependency on OpenSim.Region.CodeModules - trim trailing whitespace
2009-03-12Moving TarArchive to OpenSim.Framework.ArchiveMike Mazur1-1/+25
We now build OpenSim.Framework.Archive.dll which aims to contain code used for archiving various things in OpenSim. Also remove trailing whitespace.
2009-03-11* Fix silly windows prebuild borkage. To use System.Xml, the project must ↵Teravus Ovares1-0/+1
have it as a reference in prebuild.xml
2009-03-11Adding AssetInventory InventoryArchive pluginMike Mazur1-28/+31
This plugin exposes an HTTP handler on the AssetInventoryServer which serves a gzipped tar file containing the contents of a user's inventory. The assets referenced by the inventory are not yet archived. At the moment only export functionality is implemented, restore functionality is missing. prebuild.xml had to be shuffled around a bit in order for the plugin to build, as it has a dependency on OpenSim.Region.CoreModules. Also, close a MemoryStream in a few places.
2009-03-05Use Inventory{Item,Folder}Base in AssetInventoryServer.Mike Mazur1-0/+1
Also the first inventory storage methods are implemented.
2009-03-03Moved Linden protocol login handling to modules in OpenSim.Client.Linden. ↵MW1-2/+5
There are two region modules in there LLStandaloneLoginModule (for standalone mode) and LLProxyLoginModule (for grid mode which just handles incoming expect_user and logoff_user messages from the remote login server) Changed OpenSim.Framework.Communications.Tests.LoginServiceTests to use the LLStandaloneLoginService (from the LLStandaloneLoginModule) rather than LocalLoginService. Really these login tests should most likely be somewhere else as they are testing specific implementations of login services. Commented out the old LocalLoginService as its no longer used, but want to check there are no problems before it gets deleted.
2009-03-02Added OpenSim.Client.Linden which is a (non shared) region module that ↵MW1-0/+33
creates and initialises the LindenClientStack (or actually whatever client stack was set in opensim.ini) for that region. Currently this module is still at a early stage so just for testing, so its hardcoded to be disabled. To enable first turn off auto creation of the client stack in opensimbase (see last revision) and then in OpenSim.Client.Linden.LLClientStackModule change bool m_createClientStack = false; to true.
2009-02-27Changed the CreateCommsManagerPlugin so it requests a IRegionCreator and ↵MW1-1/+0
subscribes to the OnNewRegionCreated event on that interface rather than requesting the LoadRegionsPlugin directly. Removed the reference to OpenSim.ApplicationPlugins.LoadRegions from the CreateCommsManagerPlugin project.
2009-02-27Changed the order of the OpenSim.Grid.GridServer and ↵MW1-6/+6
OpenSim.Grid.GridServer.Modules projects in prebuild.xml. Hopefully this will fix the mono build problem.
2009-02-27Added GridServerPlugin class (which implements IGridPlugin) to ↵MW1-1/+2
OpenSim.Grid.GridServer.Modules. This class handles all the initialising of the grid server. And made GridServer into basically a generic server that just loads plugins. So this is a step towards having a generic server that loads service modules.
2009-02-27Applied patch from Mantis# 3240, thanks tlaukkan/TommilMW1-0/+1
2009-02-26This adds a new osGetAgentIP function with threat level set to High. ItSean Dague1-0/+1
isn't tested, but it doesn't break anything else. The reason for this function is to let in world tools be used to coordiante out of world network services that need access to client ip addresses.
2009-02-26Moved the Initialisation of the CommunicationsManager to a ApplicationPlugin. MW1-0/+42
Also in that plugin it registers the IUserService with all the Scenes (as they are created). So now we can start changing over all uses of IUserService, that currently access it from the CommunicationsManager to accessing it from the Scene.RequestModuleInterface call. Once that is done we can move the UserService creation out to its own plugin and remove all references to it from the CommunicationsManager. Then we can take the next CommunicationsManager interface and repeat.
2009-02-25* Applied a patch that: Added prim parameters support to MXP client lbsa711-1/+2
* Updated MXP to contain extension fragment with prims and updated MXPClientView to fill in the parameters. * Added google protobuffers dll. * Update MXP dll. * Updated MXPClientView to send prim parameters as Perception event extension * Started OpenSim and connected with IdealistViewer via MXP and ensured from log that parameters are being sent. * Ensured that nant test target runs succesfully. This closes mantis #3229. Thanks, tlaukkan!
2009-02-24Same treatment for the MessagingServer... added ↵MW1-0/+34
OpenSim.Grid.MessagingServer.Modules for the modules/components of it.
2009-02-24Added OpenSim.Grid.GridServer.Modules, for the GridServer modules/components. MW1-1/+35
2009-02-24First step in separating out the Userserver console command handling to a ↵MW1-0/+39
"module". Added OpenSim.Grid.UserServer.Modules project/dll which now contains the components of the userserver. With the OpenSim.Grid.UserServer being the setup and initiate exe.
2009-02-24Updated MessagingServer to use OpenSim.Grid.FrameworkMW1-0/+1
2009-02-24Added OpenSim.Grid.Framework project.MW1-0/+32
Changed the Gridserver so it uses/references OpenSim.Grid.Framework
2009-02-23Load default assets when AssetInventory starts.Mike Mazur1-0/+1
2009-02-22Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke1-0/+2
* Added log4net dependency to physxplugin in prebuild.xml. * Added missing m_log fields to classes. * Replaced Console.WriteLine with appropriate m_log.Xxxx * Tested that nant test target runs succesfully. * Tested that local opensim sandbox starts up without errors.
2009-02-22* Adds initial support for the MXP Virtual Worlds protocol ↵Adam Frisby1-0/+31
(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.
2009-02-20* Another stab at removing AssetServer.exe dependencieslbsa711-4/+1
2009-02-19* Fixed erroneously reverted xmlnslbsa711-1/+1
*sigh*
2009-02-19* Reverted the AssetServer fix, apparently something was dependent on ↵lbsa711-1/+60
IAssetDataPlugin being in OpenSim.Data
2009-02-19* Moved the AssetStreamHandlers to OpenSim.Framework.Serverslbsa711-4/+0
* And there, all refs to OpenSim.Grid.AssetServer.exe gone. /me takes a bow.
2009-02-19* Changed Prebuild.xml back to specifying xmlnslbsa711-56/+1
* Consequentially, dropped Prebuild solution from Prebuild.xml as the 1.7 schema does not allow for more than one solution per xml file. (*rolls eyes*)
2009-02-19* Okay, so finally got my head around this. Problem is that upstream ↵lbsa711-138/+138
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.
2009-02-19* reverted the revert of the revert. What can I say? I'm calling this a day, ↵lbsa711-1/+1
and will get back up on the horse tomorrow.
2009-02-19* Reverted the revert, as it seems the problem was the 1.0.* in the separate ↵lbsa711-1/+1
projects.