aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/prebuild.xml (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-06-24* Applied patch from Melanie, mantis issue #1581 - "Refactor LSL language, ↵lbsa711-48/+186
api and compiler out of XEngine" "First stage in a major Script Engine refactor, that will result in the LSL implementaions ebing reconverged. Not there yet, but one major part is done." Thank you, Melanie!
2008-06-20Implemented plugin support for ClientStack, with LindenUDP as the default ↵Johan Berntsson1-0/+38
plugin. This makes it easy for developers to experiment with alternative communication protocols
2008-06-16fix nhibernate driver so that it starts (based on the appearanceSean Dague1-0/+3
changes it wouldn't come up). include embedded dialect specific sql files for nhibernate migrations figure out how to get the raw db connection so that migrations can work with nhibernate. create initial migration for NHibernate + SQLite + Assets.
2008-06-09move Migration support into OpenSim.Data, because itSean Dague1-24/+0
really turned out to be small enough to not need it's own assembly
2008-06-09more work in progress migration code, still a while beforeSean Dague1-0/+1
this becomes useful
2008-06-09start in on the shell for a generic database versioning module. My Sean Dague1-0/+23
intent is to create an easier way to manage database table versions like the model used for ruby on rails migrations.
2008-06-08*Updated prebuild.xml for support with monodevelopmingchen1-53/+50
2008-06-07Patch for mantis#1493: Several patches to xengine. Thanks Melanie!Adam Johnson1-0/+1
2008-06-05Mantis#1451. Thank you kindly, mikem for additional Charles Krinke1-0/+21
tests for LSL types and strings.
2008-05-30* This is Melanie's XEngine script engine. I've not tested this real well, ↵Teravus Ovares1-0/+94
however, it's confirmed to compile and OpenSimulator to run successfully without this script engine active.
2008-05-29this is a snapshot of the OSHttpServer work-in-progress. it's an initial ↵Dr Scofield1-36/+2
skeleton, far from complete, just want to check in early and often.
2008-05-22* Fix circular dependency from last checkin by passing version as a ↵Justin Clarke Casey1-1/+0
parameter to Scene rather than referencing VersionInfo directly * Butt ugly solution
2008-05-21* Send VersionInfo string instead of the hardcoded Scene string to the ↵Justin Clarke Casey1-0/+1
"About Second Life" box * This is the same string as printed out on the opensim region console at startup, so it should now include the svn revision number (if available) * This dialog box takes an awful long time to come up on my local system - no idea why that is. However, that also seems to have been the case before this revision.
2008-05-18Cleanup: Removed LSOEngine source again as it will not be used.Tedd Hansen1-33/+0
2008-05-17while this doesn't fix the initial no pants issue in grid (which still ↵Sean Dague1-0/+1
baffles me) it does make setting appearance in grid stick.
2008-05-16in theory, this moves the appearance mapper to liveSean Dague1-0/+3
under the MySQLUserData. There is a lot of in theory here so testing would be appreciated.
2008-05-16move AppearanceTableMapper to OpenSim.Data.Base. The mapperSean Dague1-0/+2
stuff should probably be collapsed soon, as it takes up 4 assemblies now.
2008-05-14* Refactored IConfigSource into Physics plug-ins and Scene. We can get rid ↵Teravus Ovares1-0/+6
of some of the parameters we pass to it's constructor now like, 'm_allowPhysicalPrim', 'seeIntoOtherRegions', etc.. so on * The main purpose of this is to provide configuration options for ODE and other physics plug-ins that are advanced enough to be able to be configured.
2008-05-14* Start recording as a statistic the number of times we start blocking ↵Justin Clarke Casey1-5/+9
repetitive client requests for the same missing texture * This is to maintain some visibility on the problem, since I removed the intentionally irritating log messages for this
2008-05-14* Start recording initial complete avatar inventory retrieval failures from ↵Justin Clarke Casey1-1/+2
the region server * In theory, this should be a somewhat useless statistic since the user server will already have tried to use the inventory service to retrieve the avatar's skeleton. If this fails, login is halted completely. * Nonetheless I'm recording it anyway just to see whether it happens (yes, I'm too lazy to scan the logs...)
2008-05-14* Refactor additional stats collection common code into base opensim serverJustin Clarke Casey1-0/+1
* If extra stats not sent to the viewer are available on an opensim server, they are now uniformly accessible using the 'show stats' command
2008-05-14From: Dr Scofield <DrScofield@xyzzyxyzzy.net>Sean Dague1-0/+109
the attached patch set adds the (still work-in-progress but already working) RestPlugin base class and the RestRegionPlugin code. we are using XML serialization. currently working: GET /admin/regions/ -> returns UUID list of known regions GET /admin/regions/<UUID> -> returns detailed region information we'll be adding support for POST/DELETE/PUT and also for /admin/regions/<UUID>/name etc.
2008-05-13* As part of the region registration process, the grid service now requests ↵Justin Clarke Casey1-0/+1
the status of the region using the region http uri just passed in * If the status cannot be retrieved, then the region startup will terminate. * The aim of this is for earlier detection of situations where the region can send messages out but cannot accept incoming requests (often due to firewall issues) * This is currently an extremely simplistic check which completely trusts whatever http uri is given by the region * This contact may be problematic, though since the user service needs to be able to contact the region http uri, it doesn't seem unreasonable for the grid to have to be able to do so too at this stage * This change will require a prebuild
2008-05-09* Wrote a method to get the OpenJpeg data of a sculpt texture asset and save ↵Teravus Ovares1-0/+1
it to the prim shape. * Added some stuff around sculpted prim meshes.. but it's just there so the project compiles now.
2008-05-08* Spring cleaning, round 3029Adam Frisby1-29/+0
2008-05-08* Some refactorings.Adam Frisby1-0/+28
* Added shell of new Python scripting engine. Similar in design to the one used by Rex, but will be structured at a region rather than object level, also is a region module.
2008-05-07* Fixed some compiler warningsAdam Frisby1-12/+0
* Fixed prebuild.xml to remove DB4o references (more compiler warnings)
2008-05-06Restored svn:keywords to prebuild.xml.Jeff Ames1-1/+1
Set svn properties script to ignore this property from now on. Update svn properties on some other file types. Minor formatting cleanup.
2008-05-02fixed the dos line endingsSean Dague1-1/+1
2008-05-01remove db4o from prebuild. It isn't removed from the tree yet, Sean Dague1-27/+0
but at least this gets it out of our way when adding new interfaces.
2008-05-01* Adding unit test support to Environment for modules.Adam Frisby1-0/+3
* Written some unit tests for Terrain Module as an example.
2008-04-29* Implemented new InterRegion comms method in the form of InterregionModuleAdam Frisby1-0/+1
* Interfaces and methods have been defined for basic operation, however a replacement grid module is required to share region URIs with neighbours for this module to work. * Tackling that next.
2008-04-27Minor svn, formatting cleanup.Jeff Ames1-55/+50
2008-04-23* Removing old libTerrainBSD and associated Plugin & Project.Adam Frisby1-37/+0
* Updated prebuild.xml accordingly.
2008-04-22* Committing new terrain plugin effects system. Loads DLLs in /bin/Terrain/ ↵Adam Frisby1-0/+22
as terrain module extensions. Committing sample plugin library. * prebuild.xml changes.
2008-04-21* Added missing reference to OpenSim.Framework.Communications to ↵Adam Frisby1-0/+1
RemoteAdminPlugin to fix a compile error introduced by the Radmin patch.
2008-04-17* Committing first version of SVN Backup ModuleAdam Frisby1-0/+30
This is a module which allows you to periodically export a serialised version of your region to a SVN repository and store it there. It is still a work in progress and is currently disabled and incomplete, but some of the functionality is demonstratable. * Enjoy.
2008-04-10comment out OpenSim.Model until first class is added,Sean Dague1-2/+2
otherwise nant is unhappy
2008-04-10* Added stub OpenSim.Model project for migrating core types and base classeslbsa711-1/+21
2008-04-07Thank you kindly Diva & KMeisthax for adding the beginningsCharles Krinke1-0/+29
of search capability to OpenSim in the form of a configurable module.
2008-04-04check in prebuild to build OpenSim.Data.NHibernateSean Dague1-0/+32
2008-04-03move NullStorage => OpenSim.Data.Null to be consistant withSean Dague1-4/+4
where other data storage assemblies are.
2008-04-02fix ups to include OpenSim.Framework explicit includes (theySean Dague1-3/+3
were implicitly included before). Everything builds again. Now off to testing.
2008-04-02first pass at fixing up prebuild.xml after the Sean Dague1-49/+49
Framework.Data -> Data migration
2008-04-02changes back the output path for simple module to its own bin folder. [if ↵MW1-2/+2
you still have a simplemodule.dll in your bin folder, then delete it. So puts the bots back in their cave for another yet.
2008-04-01few more minor changes, needs prebuild to be ran.MW1-2/+2
2008-03-30* Added competely untested MSSQLMapperlbsa711-0/+29
* Added the new mapper to the mapper factory * Made choice of mapper configurable * This means, in hteory, that we can persist avatar appearance on MSSQL as well
2008-03-26Committed patch from Lulurun to fix Mantis 817. Thanks LulurunJohan Berntsson1-0/+27
2008-03-25rearranged a couple of projects in prebuild.xml:MW1-39/+41
moved AvatarFactory project to after OpenSim.Region.Environment moved OpenSim.Framework.Data.MySQLMapper to after OpenSim.Framework.Data
2008-03-25Moved Avatar appearance Factory to its own project so that the reference to ↵MW1-1/+29
MySQLDatabaseMapper could be removed from Region.Environment. Added a using OpenSim.Framework.Data statement to MySQLDatabaseMapper , to try to fix the build problem that has been reported on the mailing list.