aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/prebuild.xml (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Start of Inventory service, currently only (partially) functional in ↵MW2007-08-141-0/+4
| | | | | | | | standalone mode and using sqlite). In standalone mode, if you have account authenticate turned on (setting in opensim.ini) then when you create a new account, a set of inventory is created for that account and stored in database (currently only a set of empty folders). Then during login the database is search for that set and sent to the client in the login response. More functions will be added soon, like creating new folders (and a bit later items) from the client inventory window.
* Code comments and cleanup, correct datatypes for key, vector, rotation, ↵Tedd Hansen2007-08-121-7/+2
| | | | (hopefully) reference to Axiom during compile, passing of BuiltIns during script load, BuiltIn interface added, etc etc
* * Removed magic exclusion of MonoSqlite data store from prebuildlbsa712007-08-121-1/+1
| | | | | | * Renamed project back to base.
* Made account Authentication optional in "sandbox/standalone" mode. Just ↵MW2007-08-111-0/+1
| | | | change "standalone_authenticate = false" to be true in OpenSim.ini. Then as per grid mode, you can use the "create user" command to create new accounts.
* Some cleaning up and removed a few old files no longer in use.MW2007-08-101-1/+3
| | | | | | | | | | | Temporary have had to rename the OpenSim.DataStore.MonoSqlite project to OpenSim.DataStore.MonoSqlite1, as I'm not sure what was done to stop the old project name being included in the VS2005 solution. Also some config changes: OpenSim now has a INI (OpenSim.ini) file that it will read some config settings from (if the ini file exists). Added Mono.Data.SqliteClient.dll so that we can use the same code for sqlite on Windows and mono/linux. (from what I can tell Mono class libraries have a MIT license so there should be no problems with us including this dll). So now to get the basic prim storage working , you need to first create the sqlite database file from the sqlite3-prims.sql in share directory. Then in the OpenSim.ini file, change the storage_plugin so it points to OpenSim.DataStore.MonoSqlite1.dll (storage_plugin = OpenSim.DataStore.MonoSqlite1.dll). Then in your region.xml files change the DataStore value so it is the name of your database file (at the moment you need a different sqlite3 database file for each region).
* Fixed a couple of mistakes.MW2007-08-101-1/+1
|
* Made a few changes so that once we enable the sqlite data store (simple line ↵MW2007-08-101-1/+1
| | | | change in OpenSimMain), then basic ( with a few limits at moment) prim database backup will work.
* Forgot to remove reference to .dll that was mergedTedd Hansen2007-08-091-3/+0
|
* ScriptEngine just needs 2 events hooked up and llSay() implemented to work. ↵Tedd Hansen2007-08-091-0/+1
| | | | See TODO.txt for details.
* Merged OpenSim.ScriptEngine.DotNetEngine.Compiler.LSL into ↵Tedd Hansen2007-08-091-32/+0
| | | | OpenSim.ScriptEngine.DotNetEngine to avoid the compile error
* add MonoSqlite storage module, this might break windows folks, needSean Dague2007-08-081-0/+25
| | | | | | to test lbsa's patch on that one
* The startup set of assets in the local asset server can now be set from a ↵MW2007-08-081-0/+2
| | | | | | | xml file (OpenSimAssetSet.xml). (remember to make changes to the set, you will also need to delete the old asset .yap file, so that it is recreated). Also the set of items in the OpenSim inventory Library can also now be set from a xml file (OpenSimLibrary.xml).
* update prebuild to work with new script stuffSean Dague2007-08-081-7/+10
|
* Removed System.Windows.Form reference from DotNetEngine.Compiler.LSL , it ↵MW2007-08-081-1/+0
| | | | didn't seem to be needed anyway.
* Added ScriptEngine to solution (prebuild.xml)Tedd Hansen2007-08-081-0/+65
|
* * SimpleApp works again:lbsa712007-08-061-0/+1
| | | | | | | | | | | * NetworkServersInfo settable without config file * DefaultHomeLoc throws if getted before setted * Removed nonsensical sandbox distinction * Refactored default config file creation * Some more small refactorings on shapes
* clean up of startup config settings (command line args etc),MW2007-08-041-1/+1
| | | | | | | Now using the Nini configuration library (suggest we look into using this for the rest of our config handling, as it provides a standard interface for command line args, INI files, Xml files, .NET config files, and windows registry). One IMPORTANT change is that to TO START GRIDMODE , you need to now use -gridmode=true . Also need someone to test it under mono. (there is a dll that has been compiled under mono available, just hoping that we don't have to deal with separate dlls for windows and linux.
* Changes to prepare for future possible configuration of separate logdir, ↵Brian McBee2007-08-031-0/+1
| | | | configdir, datadir.
* (no commit message)Brian McBee2007-08-021-1/+1
|
* * Highly experimental: Added DB4o DataStore support. Untested.Adam Frisby2007-07-291-0/+24
|
* *Added configuration plugin (OpenSim.Framework.Configuration.HTTP.dll) that ↵mingchen2007-07-231-1/+26
| | | | | | | | fetches a file from a remote server *Right now, values are not saved back to the remote server, but that will be changed *Removed some warnings from invalid references that were not used anyways
* * Some work in progress code: Inventory cache, start of inventory ↵MW2007-07-221-54/+28
| | | | | | | | | | | server/service, userprofile cache, inventory handling. (non of it is enabled yet (or at least it shouldn't be). * Fixed some of the problems with crossing regions when flying: you should no longer sink to ground level when crossing (should keep roughly your right height). Should no longer sometimes get sent back to the centre of the current region when attempting to border cross. But instead sometimes you will find you avatar stop at the edge of region and you will need to start moving again to retry the crossing (which should then work). This code is partly based on Babblefrog's issue #212 patch. [I think I have some ideas of how to solve the stopping at edges problem, just want to get the inventory code done first] * Capabilities code has now been moved to the OpenSim.Framework.Communications project as some of the caps code will be tightly tied to inventory/asset handling and it was causing a two way reference problem when it was in its own project/dll. This is a Big commit as I was going to keep my inventory work local until I had it in a working state, in case it brakes anything, but its getting harder to keep in sync with svn.
* * Deleted libTerrain-BSD.dllAdam Frisby2007-07-211-1/+0
| | | | | * Added libTerrain to BasicTerrain directly as a subfolder
* * Issue#209 - Terrain Hills Patch (Thanks Babblefrog)Adam Frisby2007-07-211-1/+2
| | | | | | * Issue#208 - Region crossing should be using External host (Thanks Babblefrog) * Issue#207 - Prebuild.xml contains path errors (Thanks Gareth)
* *Moved XmlConfiguration to its own projectmingchen2007-07-191-0/+26
| | | | | | *Made it possible to load a configuration interface by DLL *Deleted the 1024 config files until they are updated
* * Removed yet more compiler warningsAdam Frisby2007-07-191-76/+0
| | | | | * Dropped old ILocalStorage storage engines.
* *New Configuration System, much easier and less buggy compared to the ↵mingchen2007-07-181-75/+4
| | | | | | | | original system in place *View RegionInfo.cs for an example on how it works! *This hopefully copies all the files over, but who knows :)
* * RegionApplicationBase restructuring now completelbsa712007-07-161-0/+1
| | | | | * Still has some weird bug in SimpleApp though.
* changed to native line ending encodingSean Dague2007-07-161-1060/+1060
|
* * More prebuild.xml changes.Adam Frisby2007-07-151-12/+10
|
* * Fiddling with prebuild.xmlAdam Frisby2007-07-151-27/+28
|
* * Added loading methods for NullStorage.Adam Frisby2007-07-151-0/+1
|
* * Typo in prebuild.xmlAdam Frisby2007-07-151-1/+1
|
* * Adding example "NullStorage" DataStore engine.Adam Frisby2007-07-151-0/+26
|
* Set up parcel manager and the master avatar in SimpleApp.MW2007-07-141-0/+1
|
* Added AddPreCompiledScript method to ScriptManager.MW2007-07-141-0/+1
| | | | | | | Done some work on lbsa71's simpleApp(hope he doesn't mind): now have the avatar showing up and the terrain and his pulsating box (well except its not a box, as there seems to be something wrong with our PrimitiveBaseShape..DefaultBox() settings). Also noticed a few other problems that I had to work around, so these need looking into.
* * Merged solutions again; welcome home, boys!lbsa712007-07-131-35/+0
|
* Next time maybe I should check it still compiles before committing.MW2007-07-121-0/+1
|
* More work on UserProfile and inventory cache (still currently not enabled).MW2007-07-111-13/+15
| | | | | Asset uploading over CAPS now works, and although inventory isn't really working yet, this should now at least enables texturing of prims.
* updated libsecondlife.dll to a 1.18 version (from the libsecondlife aditi ↵MW2007-07-111-22/+24
| | | | | | | | branch, so when they have a trunk version that is 1.18 ready, best to update again). Started some work on a userProfile/inventory cache.
* Gird mode in sugilite should now work in so far as you should be able to ↵MW2007-07-101-0/+2
| | | | | | | login and move between regions in the same instance. Moving to regions in a different instance of opensim still needs implementing (working on it now). Also trying to look at the map in grid mode will crash the server.
* * Yeah; forgot; we haven't implemeted 'depends' in prebuild nant target; so ↵lbsa712007-07-091-25/+25
| | | | be sure to specify projects in the right order.
* * another stab at #176lbsa712007-07-091-29/+0
|
* Taking a stab at #176lbsa712007-07-091-49/+24
|
* (no commit message)lbsa712007-07-081-24/+0
|
* *Removed SimProfile.cs as it is no longer needed (in favor of SimProfileData)mingchen2007-07-051-0/+1
| | | | | | *Added simulator_data_request XMLRPC method to request data from the grid server about a sim instead of faking its login *Login is progressing, now just getting an XML error (http://pastebin.com/942515) -- if you can fix this, throw MingChen in IRC a Private Message
* * Added conceptual LlsdMethod Demo to SimpleApp (work in progress)lbsa712007-07-021-145/+146
|
* * Fixed Issue #161 by using PhysicsScene.Null instead of BasePhysicsScenelbsa712007-07-021-1/+1
| | | | | | | * Hid NullPhysicsScene for great justice * Fixed broken Grid build
* Fixed SimpleApp - aka thankgoditssundaycommitlbsa712007-07-011-0/+3
| | | | | | | | | | | | | | * Updated SimpleApp with various introduced dependencies * Extracted ScenePrescence creation in Scene * removed try-catchall from UserManagerBase (that actually hid a bug) * Refactored RegionInfo * handle is calculated * it will explode upon accessing x,y,ip,port,externalip if not explicitly initialized * Removed superfluous 'ref' keywords * Removed a shitload of 'catch Exception e' that causes build warnings * Lots of small refactorings, renames et c * Ignored some bins
* * Removed J# language support because it has issues with Mono.Adam Frisby2007-06-281-2/+0
|