aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/prebuild.xml (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Reverted the revert, as it seems the problem was the 1.0.* in the separate ↵lbsa712009-02-191-1/+1
| | | | projects.
* * Reverted Prebuild commit due to strange run-time errors.lbsa712009-02-191-1/+1
|
* === PREBUILD UPSTREAMS UPDATE : POTENTIAL BREAKAGE ===lbsa712009-02-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | * 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.
* * Iniital inventory archive test code. Doesn't actually do any testing yetJustin Clarke Casey2009-02-161-0/+1
|
* * remove duplicate OpenSim.Region.CoreModules assembly entryJustin Clarke Casey2009-02-161-46/+0
|
* From: Alan Webb <awebb@linux.vnet.ibm.com>Sean Dague2009-02-161-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* - removed OpenSim.Grid.AssetInventoryServer.Metadata class in favor ofMike Mazur2009-02-161-1/+0
| | | | | | | | | | | | | | OpenSim.Framework.AssetMetadata and related updates in AssetInventory server - removed dependency on MySql.Data.MySqlClient - commented out the bulk of OpenSimInventoryStorage due to missing MySql.Data dependency - refactor asset creation in OpenSimAssetFrontend - commented out ForEach implementation, which also depended on MySql.Data, until it's supported by OpenSim backends - commented out some handlers in BrowseFrontend and ReferenceFrontend as they relied on either ForEach or the removed Metadata class
* - clean up using references as well as References in prebuild.xmlMike Mazur2009-02-161-40/+20
| | | | | | - comment out a bunch of stuff in OpenSimInventoryFrontendPlugin.cs to get rid of warnings
* Fix dependency on non-OpenSim version of OpenMetaverse.StructuredData.dll.Mike Mazur2009-02-161-4/+4
|
* - change AssetInventoryServer config from XML to INIMike Mazur2009-02-161-1/+6
| | | | | | - 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-1/+0
| | | | | | | - bring config system in line with other servers - add new plugin filter class which filters on ID - update AssetInventoryServer.ini file
* - asset server functionality works with OpenSim's HttpServerMike Mazur2009-02-161-4/+4
| | | | | - start of removal of AssetInventoryServer.Metadata class
* AssetInventoryServer now compiles while using the standard OpenSimMike Mazur2009-02-161-1/+4
| | | | | console and HttpServer. It doesn't work though.
* - add list for backend plugins and Dispose() all plugins on shutdownMike Mazur2009-02-161-59/+0
| | | | | | | - fix some plugin names - remove most references to ExtensionLoader - remove commented out AssetInventoryServer blobs from prebuild.xml
* Move BrowseFrontend and ReferenceFrontend toMike Mazur2009-02-161-0/+5
| | | | | OpenSim/Grid/AssetInventoryServer/Plugins.
* Add OpenSim & Simple inventory storage plugins and Null metrics plugin.Mike Mazur2009-02-161-0/+1
|
* - added Simple AssetInventoryServer plugin (asset storage only)Mike Mazur2009-02-161-0/+32
| | | | | | | - removed OpenSim storage and frontend classes in Extensions dir - put OpenSim plugins in OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim namespace
* - implement and load NullMetrics module in AssetInventoryServerMike Mazur2009-02-161-0/+23
| | | | | - update AssetBase de/serialization in AssetInventoryServer
* - IAssetProviderPlugin was changed to IAssetDataPluginMike Mazur2009-02-161-0/+1
| | | | | - Use OpenSim.Data.DataPluginFactory to load data plugins
* Rename NewAssetServer AssetInventoryServer and fully qualify withMike Mazur2009-02-161-5/+5
| | | | | OpenSim.Grid.AssetInventoryServer.
* - add OpenSim.Grid.AssetServer.Plugins.OpenSim as a dependency for ↵Mike Mazur2009-02-161-2/+32
| | | | | | | | OpenSim.Data.*.addin.xml - remove OpenSim.Grid.NewAssetServer.exe from bin/OpenSim.Data.addin.xml - add prebuild.xml section for OpenSim.Grid.AssetServer.Plugins.OpenSim.dll
* - add section to prebuild.xml for buildingMike Mazur2009-02-161-0/+95
| | | | | OpenSim.Grid.NewAssetServer.exe
* * Add missing OpenSIm.Framework.Communications ref for Wdinwos buildsJustin Clarke Casey2009-02-121-1/+2
|
* * Added XEngine tests and gathered other ScriptEngineSean Dague2009-02-121-27/+20
| | | | | | | Tests together From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
* * Reinstate texture tests, eliminating duplicate ↵Justin Clarke Casey2009-02-101-56/+1
| | | | OpenSim.Region.CoreModules.Tests
* this is step 2 of 2 of the OpenSim.Region.Environment refactor.Dr Scofield2009-02-101-110/+104
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NOTHING has been deleted or moved off to forge at this point. what has happened is that OpenSim.Region.Environment.Modules has been split in two: - OpenSim.Region.CoreModules: all those modules that are either directly or indirectly referenced from other OpenSim packages, or that provide functionality that the OpenSim developer community considers core functionality: CoreModules/Agent/AssetTransaction CoreModules/Agent/Capabilities CoreModules/Agent/TextureDownload CoreModules/Agent/TextureSender CoreModules/Agent/TextureSender/Tests CoreModules/Agent/Xfer CoreModules/Avatar/AvatarFactory CoreModules/Avatar/Chat/ChatModule CoreModules/Avatar/Combat CoreModules/Avatar/Currency/SampleMoney CoreModules/Avatar/Dialog CoreModules/Avatar/Friends CoreModules/Avatar/Gestures CoreModules/Avatar/Groups CoreModules/Avatar/InstantMessage CoreModules/Avatar/Inventory CoreModules/Avatar/Inventory/Archiver CoreModules/Avatar/Inventory/Transfer CoreModules/Avatar/Lure CoreModules/Avatar/ObjectCaps CoreModules/Avatar/Profiles CoreModules/Communications/Local CoreModules/Communications/REST CoreModules/Framework/EventQueue CoreModules/Framework/InterfaceCommander CoreModules/Hypergrid CoreModules/InterGrid CoreModules/Scripting/DynamicTexture CoreModules/Scripting/EMailModules CoreModules/Scripting/HttpRequest CoreModules/Scripting/LoadImageURL CoreModules/Scripting/VectorRender CoreModules/Scripting/WorldComm CoreModules/Scripting/XMLRPC CoreModules/World/Archiver CoreModules/World/Archiver/Tests CoreModules/World/Estate CoreModules/World/Land CoreModules/World/Permissions CoreModules/World/Serialiser CoreModules/World/Sound CoreModules/World/Sun CoreModules/World/Terrain CoreModules/World/Terrain/DefaultEffects CoreModules/World/Terrain/DefaultEffects/bin CoreModules/World/Terrain/DefaultEffects/bin/Debug CoreModules/World/Terrain/Effects CoreModules/World/Terrain/FileLoaders CoreModules/World/Terrain/FloodBrushes CoreModules/World/Terrain/PaintBrushes CoreModules/World/Terrain/Tests CoreModules/World/Vegetation CoreModules/World/Wind CoreModules/World/WorldMap - OpenSim.Region.OptionalModules: all those modules that are not core modules: OptionalModules/Avatar/Chat/IRC-stuff OptionalModules/Avatar/Concierge OptionalModules/Avatar/Voice/AsterixVoice OptionalModules/Avatar/Voice/SIPVoice OptionalModules/ContentManagementSystem OptionalModules/Grid/Interregion OptionalModules/Python OptionalModules/SvnSerialiser OptionalModules/World/NPC OptionalModules/World/TreePopulator
* * Reinstate tests that are now in CoreModulesJustin Clarke Casey2009-02-091-1/+57
|
* starting phase 2 of the OpenSim.Region.Environment commit: relocatingDr Scofield2009-02-091-0/+48
| | | | | | OpenSim.Region.Environment.Modules.Agent en bloc to OpenSim.Region.CoreModules
* Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke2009-02-071-0/+7
| | | | | | | Created nunit test for LSL API and example test for llAngleBetween which was marked untested in wiki. Run new test succesfully with NUnitGUI and nant build.
* * Removed superflous (and circular) ref to OpenSim.Region.Frameworklbsa712009-02-061-1/+0
|
* killing OpenSim.Data.Base ref once moreDr Scofield2009-02-061-1/+0
|
* dropping ref to OpenSim.Grid (another survivor thx to the refactoring by-pass)Dr Scofield2009-02-061-1/+0
|
* * reinstate OpenSim/Region/Framework/Scenes/TestsJustin Clarke Casey2009-02-061-0/+56
| | | | | | * should bring us back up to 240 tests
* removing bad references to OpenSim.Data stuff that got deleted earlierDr Scofield2009-02-061-15/+0
| | | | | | this week but seems to have survive on the refactoring by-pass.
* * Add missing Region.Framework reference in ApplicationPlugins.LoadRegionsJustin Clarke Casey2009-02-061-0/+1
|
* This changeset is the step 1 of 2 in refactoringDr Scofield2009-02-061-50/+86
| | | | | | | | | | | | | | | | | | | | OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
* Embed OpenSim.Data.addin.xml as a resource into OpenSim.Data.dll.Mike Mazur2009-02-031-0/+1
|
* - move OpenSim/Framework/IInventoryData.cs toMike Mazur2009-02-031-0/+1
| | | | | | OpenSim/Data/IInventoryData.cs - trim trailing whitespace
* - move IAssetDataPlugin from OpenSim/Framework/IAssetProvider.cs toMike Mazur2009-02-031-4/+6
| | | | | | OpenSim/Data/IAssetData.cs - remove some trailing whitespace
* * Removed the unused Data.Base Frameworklbsa712009-02-021-107/+0
|
* Removing ThirdParty/3Di from prebuild.xml.Mike Mazur2009-01-281-68/+0
|
* Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke2009-01-231-0/+2
| | | | | | | | | | | | | * 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.
* * refactor: move scene setup code into common test code assemblyJustin Clarke Casey2009-01-231-0/+1
|
* add event queue code for sending group IM for future group supportDahlia Trimble2009-01-231-0/+1
|
* * Progressive texture patch + PriorityQueue put into the LLClient namespace.Teravus Ovares2009-01-191-0/+1
| | | | | * Updates LibOMV to r2362
* * Rig up enough infrastructure to actually perform a successful 'standalone' ↵Justin Clarke Casey2009-01-161-0/+1
| | | | | | | | | teleport unit test with checks that the scene presence disappeared from sceneA and appeared in sceneB * However, I'm not convinced that the actual process in the test completely reflects reality, and a lot of stuff had to be rigged up (which should get resolved over time)
* * minor: Future archiver test stubJustin Clarke Casey2009-01-161-0/+1
|
* * Fixed breaking VS2008 build. Added missing Statistics referencelbsa712009-01-131-0/+1
|
* * Apply http://opensimulator.org/mantis/view.php?id=2965Justin Clarke Casey2009-01-121-0/+1
| | | | | | | * Adds first version of MsSql2005Dialect support for NHibernate * Thanks mpallari
* Thank you kindly, Tlaukkan (Tommil) for a patch that:Charles Krinke2009-01-111-0/+1
| | | | | | | | | | | | | | | Fixed all NHibernate unit tests by implementing missing persistency methods, tables, columns and fixing bugs in the existing implementation. Two minor changes to classes outside NHibernate module: Added Scene instantiation for SceneObjectGroup in OpenSim.Data.Tests.BasicRegionTest as this was required by the NHibernate persistency. In the process added also mock constructor to Scene which only populates RegionInfo in the scene which is used by ScenePart.RegionUUID. NHibernate module is still in experimental state and has not been tested at opensim region or ugaim runtime configuration. Adding unit tests to build is not yet advisable nor using NHibernate module in any production setup.