aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/prebuild.xml (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Thank you, dslake, for a set of patches to improve OpenSim startupMelanie2009-09-021-0/+2
| | | | and idle performance.
* * Another attempt at fixing the random spurious test error.Teravus Ovares (Dan Olivares)2009-08-261-2/+7
| | | | * This time it might be the listening socket thread from HttpServer aborting with a non blocking thread abort exception. Hopefully calling Stop() on MainServer.Instance will solve that.
* Add reference to OpenMetaverse.dll to UserServer.Modules to make MSVS happyMelanie2009-08-261-0/+1
|
* A slightly modified version ofTeravus Ovares (Dan Olivares)2009-08-251-0/+1
| | | | http://opensimulator.org/mantis/view.php?id=4040 by jhurliman. The patch didn't match up, so I winged it here. My effort to manually merge the patch seems to make sense, so I'm going to commit it.
* Remove the AssetInventory server from core. It has fallen behind bothMelanie2009-08-201-122/+0
| | | | | | upstream and the reference implementation to the point where it is no longer usable. It has no known users, and sinnce it doesn't work anymore, it is safe to assume that no one has used it in a long time.
* Graft the REST console onto the message server as well. What a dirty hack!Melanie2009-08-191-0/+1
| | | | Works the same as the others.
* Graft the REST console onto the grid server. Same procedure as withMelanie2009-08-191-0/+1
| | | | the user server.
* Add rest console support to the user server. Will ask new questions atMelanie2009-08-191-0/+1
| | | | | | startup. To use, run it normally once, answering the questions, then run again with -console=rest. Also now supports -console=basic for a console that reads stdin
* Apply http://opensimulator.org/mantis/view.php?id=4016Justin Clark-Casey (justincc)2009-08-171-0/+1
| | | | | Make previously hidden cookies available to code Thanks jhurliman
* Add System.Xml reference to the console projectMelanie2009-08-171-0/+1
|
* Add the OpenSim.ConsoleClient app.Melanie2009-08-171-0/+32
| | | | | Usage: OpenSim.ConsoleClient -h <host> -p <port> -u <user> -P <pass> host defaults to localhost, port defaults to 8003.
* Filling in the blanks: The "meat" of the REST consoleMelanie2009-08-171-0/+2
|
* * More improvements to BasicAssetTest.csKunnis2009-08-161-0/+1
|
* * Kunnis' third patch in mantis: ↵Teravus Ovares (Dan Olivares)2009-08-141-112/+113
| | | | | | http://opensimulator.org/mantis/view.php?id=3993 * Sets the assembly target of all projects to .NET 3.5. I was asked to apply this by Diva to resolve a build issue with LinQ on Visual Studio 2008 but I have not tested it personally.
* * Adds two tests to OpenSim.Framework.Tests. *AgentCircuitData test to ↵Teravus Ovares (Dan Olivares)2009-08-131-0/+1
| | | | ensure that the Packing and unpacking method to and from OSD works as expected called, TestAgentCircuitDataOSDConversion. Also created a HistoricalAgentCircuitDataOSDConversion to ensure that any changes in the way the json wire format is parsed warns us via this test.
* * Fix test failure by setting up MainConsole.Instance in ↵Justin Clark-Casey (justincc)2009-08-101-0/+1
| | | | SceneSetupHelpers.SetupScene()
* Remove the OpenSim.Services.exe projectMelanie2009-08-071-33/+0
|
* Remove the forge module patch insertion area from prebuild.xmlMelanie2009-08-061-10/+0
|
* Fix prebuild include syntaxMelanie2009-08-051-1/+1
|
* Comment the include line as it seems our prebuild can't handle it.Melanie2009-08-051-1/+1
|
* Add include line to prebuildMelanie2009-08-051-0/+2
|
* Add the region module shell for the new freeswitch serviceMelanie2009-08-041-1/+5
|
* Adding the plumbing for a ROBUST freeswitch serviceMelanie2009-08-041-0/+31
|
* Some module reshuffling, no user functionality yetMelanie Thielker2009-07-101-38/+0
|
* Create a MainServer static class to access the regions server's HTTP serverMelanie Thielker2009-07-101-0/+1
|
* A stab at fixong a Windows build breakMelanie Thielker2009-07-071-0/+1
| | | | | | Mantis #3872
* Committing the basic universal server Technology (B.U.S.T.)Melanie Thielker2009-07-071-0/+33
|
* * Fixed some prebuild ref issueslbsa712009-06-221-2/+1
|
* Moved OpenSim/Framework/Communications/Capabilities up to ↵diva2009-06-181-0/+44
| | | | OpenSim/Framework/Capabilities. Didn't change the namespace because VC# is not helping, and this would imply manually changing more than 50 files. So the namespace is still OpenSim.Framework.Communications.Capabilities, to be cleaned up later by someone with more energy.
* Removing the OpenSim.SimulatorServices project. All of those region modules ↵diva2009-06-151-35/+1
| | | | are now in CoreModules/ServiceConnectorsIn, where they belong.
* Pulled out HelloNeighbour into its own service, INeighbourService, which may ↵diva2009-06-141-0/+2
| | | | get more functions as we go along. It's a very simple service and service connectors, and it served primarily to establish the design of services that dependent on Scenes and that must always have a local connector. More refactoring coming, as this showed how to do it right.
* * Reinstating UserProfileCacheServiceTests. One test still fails ↵Arthur Valadares2009-06-111-0/+1
| | | | (TestUpdateFolder)
* Heart surgery no.2: the inventory service hooks. diva2009-06-101-0/+1
| | | | | | | Several improvements in the connectors themselves. Several improvements in configurations. Needed to add a hack in IUserService and UserManagerBase, to be removed when that service is refactored.
* First draft of the inventory service IN connector. Probably won't work yet. ↵diva2009-06-081-0/+1
| | | | But everything of inventory service is now checked in, first draft.
* First draft of inventory service connectors, and service implementation. No ↵diva2009-06-071-0/+31
| | | | | | | handlers yet, this is just the OUT part for now. It's not active and nothing in the simulator uses this yet. Just checking it in to start sharing with others. There are a couple of interesting software design points that could use other devs opinions. Hopefully I added all needed files.
* * Reverting the test restructuring as, on second thought, this is not at all ↵lbsa712009-06-071-5/+5
| | | | | | | how the tests are structured. (pt2)
* * Restructured Scenes Tests to follow (what I conceive of as being) current ↵lbsa712009-06-051-5/+5
| | | | directory standards. (pt 2 - thank you, svn. not.)
* Committing the skeleton of the authentication serviceMelanie Thielker2009-06-031-0/+31
|
* * Pried apart the ODE tests. This fixes mantis #3212lbsa712009-06-021-3/+36
|
* * Add xml2 load testJustin Clarke Casey2009-05-291-1/+2
|
* plumbing for future sculpt map cachingDahlia Trimble2009-05-291-0/+1
|
* * So, giving up on my efforts to de-duplicate the asset handlers. I'll just ↵lbsa712009-05-271-2/+1
| | | | | | | service commit my current state, then start over and this time concentrating only on the new handlers. * Fixed some erroneous refs in Tests.Common
* Revert "* Added IntegrationTest Attribute and tagged the ODETestClass"Sean Dague2009-05-271-1/+0
| | | | | | | This reverts commit 8f0096cc7b112fea8f69f391224911f624482747. To get us back to compiling on fresh checkouts.
* the new Tests were defined before the Tests.Common dll in prebuild,Sean Dague2009-05-271-33/+35
| | | | | | this causes nant to choke on a fresh checkout. This should fix the build break
* * Added IntegrationTest Attribute and tagged the ODETestClasslbsa712009-05-271-0/+1
|
* * Added OpenSim.Server.Handlers.Tests projectlbsa712009-05-271-0/+38
| | | | | | * Added AssetServerGetHandlerTests - not really wired up yet; more to come. * Ignored some gens
* Forgot to include this on the last commit.diva2009-05-261-1/+2
|
* Beginning of refactoring RESTComms/LocalComms in the new style of services ↵diva2009-05-251-0/+1
| | | | and connectors. This commit has the beginning of the In connector, not the Out. Nothing of this is finished yet, and it doesn't run. But it should compile ok.
* letting TestClient implement IClientCore as well to fix test caseDr Scofield2009-05-251-0/+1
| | | | | failure due to new NAT code
* Fixes map image on link-region (HG).diva2009-05-241-0/+1
|