aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Mantis#1682. Thank you kindly, Sempuki for a patch that:Charles Krinke2008-07-102-6/+2
| | | | | | Move control of Mono.Addins from source attributes to external XML files. This removes a lot of coupling of the source with Mono.Addins
* * Start scripts loaded from an archiveJustin Clarke Casey2008-07-071-1/+1
|
* Mantis#1647. Thank you very much, Sempuki for a patch that:Charles Krinke2008-07-042-8/+16
| | | | | Updates the previous module loader work.
* Added "save-prims-xml2 <PrimName> <FileName>", as we were lacking a method ↵MW2008-07-011-0/+11
| | | | to save a single primitive or small group of them. This command will save all prims in the current scene that name matches the "PrimName" parameter. The saved file is in standard xml2 format, so can be loaded using load-xml2
* Add minor comments.Charles Krinke2008-06-291-0/+3
|
* more work on the support for multiple inventory servers. MW2008-06-281-0/+7
| | | | | | | | | | The Login service should now read/create new inventory on the inventory server that is set in a users profile. Also added "Add-InventoryHost" console command to add a support for a new server to a region. So it would be good if someone could test this. Set up the grid as normal, but then also run extra inventory server on a different computer (well actually it just has to be on a different network hostname, so one using "http://localhost:8004" and one using "http://127.0.0.1:8005" should work) then you need to manually edit the user profile database to set the new servers url in a user's "userInventoryURI" field. Then on a region server, use the Add-InventoryHost to add the new server url (always include the full url, including http, but don't add a final /) Login with that account and see if the inventory works. Of course these needs to be made more user friendly.
* Mantis#1616. Applied Melanie's patch. This may or mayCharles Krinke2008-06-281-1/+2
| | | | | not break trunk.
* plumbing for multiple inventory servers. Mostly done on the region server side. MW2008-06-281-1/+1
| | | | | | TODO next is to make the login server read/write a users inventory from the correct server (the inventory url set in a userprofile) On the region side, although not tested with multiple servers it should work if that inventory url was set, and the inventory servers urls have been added to the CommunicationsManager, using CommunicationsManager.AddInventoryService(string hostUrl)
* Remove one warning. We are now down to 16 warnings inCharles Krinke2008-06-281-1/+1
| | | | | a build with VS2005.
* last round of warning squashing. calling it a day now.Dr Scofield2008-06-271-1/+1
|
* Mantis#1591. Thank you graciously, Sempuki for a patch that:Charles Krinke2008-06-272-28/+17
| | | | | | | | | | Currently module loading is done ad-hoc. I propose creating a simple loader class that leverages Mono.Addins (and perhaps the new .NET addins when they become available in mono). Attached is a basic patch for review that compiles into HEAD, but doesn't yet replace any existing ad-hoc loaders.
* small change to last commitMW2008-06-262-25/+25
|
* As per the suggestion on the mailing list, added support for a OpenSim.xml ↵MW2008-06-262-21/+57
| | | | | | | config file, instead of a ini file. INI files still work the same as they did before, just now if a ini file isn't found, it looks for a OpenSim.xml file (of course in xml format) and if found uses that. Includes a OpenSim.Example.xml for reference (the default settings saved as a xml file).
* Minor formatting cleanup.Jeff Ames2008-06-251-7/+7
|
* changed kickuser console command to use caseless compared substrings for ↵Dahlia Trimble2008-06-231-6/+2
| | | | first and last name parameters
* Changed the kickuser command to use the new console RegisterCmd feature.Dahlia Trimble2008-06-221-31/+33
|
* Added an experimental "kickuser" console command to log off a user by name.Dahlia Trimble2008-06-221-0/+31
|
* Mantis#1580. Thank you kindly, Dmiles for a patch that:Charles Krinke2008-06-211-15/+32
| | | | | | | solves an incorectly spliting and rejoining the passed in string[] cmdArgs and losing the double quoted separation of command arguments.
* * Adds Region ban capability to Regions. You access this by going to ↵Teravus Ovares2008-06-211-0/+1
| | | | | | | | World->Region/Estate. Then on the Estate tab, at the lower right hand corner, clicking the 'Add' button and picking an avatar. * It only persists across reboots for the mySQL datastore currently. * Currently have stubs in the other datastores.
* Implemented plugin support for ClientStack, with LindenUDP as the default ↵Johan Berntsson2008-06-201-0/+8
| | | | plugin. This makes it easy for developers to experiment with alternative communication protocols
* Mantis#1567. Thank you kindly, Dmiles for a patch that addresses:Charles Krinke2008-06-181-1/+10
| | | | | | Add a .Trim() that was forgotten in a previous patch titled: [PATCH] Adds an API for for plugins to create new Console commands and Help
* * Enables maptile display in grid mode for simulators that are not on the ↵Teravus Ovares2008-06-141-1/+1
| | | | | | | | | same instance. * Only generates a new maptile after a refresh interval * Maptile names have the UnixTimeSinceEpoch that they were generated and the regionUUID they're from, so you can know which ones are no longer necessary. * Updates RegionInfo, so backup your /bin/Region/*.xml files.
* Update svn properties. Formatting cleanup.Jeff Ames2008-06-091-52/+53
|
* Mantis#1499. Thank you kindly, DMiles for a patch that:Charles Krinke2008-06-081-77/+132
| | | | | | | was incorrectly sending the command along with the args to the CommandDelegate help was getting lost on top of normal help & help was getting missed except in an exact match (and only returning the first)
* Mantis#1495. Thank you kindly, Kinoc for:Charles Krinke2008-06-071-1/+93
| | | | | | 0001495: [PATCH] Adds an API for for plugins to create new Console commands and Help
* Formatting cleanup, minor refactoring, svn properties.Jeff Ames2008-06-041-8/+8
|
* * Move most bookending startup/shutdown messages to BaseOpenSimServer so ↵Justin Clarke Casey2008-06-011-2/+0
| | | | they appear in non-console servers too
* * Fix build break by eliminating remaining IScenePermissions references - ↵Justin Clarke Casey2008-06-014-8/+8
| | | | | | | | must remember to nant clean * Hook all server startups into base opensim server startup method
* * Move log version printing up into BaseOpenSimServerJustin Clarke Casey2008-06-013-14/+6
|
* * Refactor: Split opensim background server into a separate classJustin Clarke Casey2008-06-015-40/+94
|
* * Make version information common to all serversJustin Clarke Casey2008-05-314-117/+4
| | | | | | * Now all servers respond to the "show version" command on the console
* * Propogate OpenSimMain hack to stop mono-addins scanning warnings to the ↵Justin Clarke Casey2008-05-311-2/+2
| | | | | | | | grid managing * This hack just temporarily sends console output to /dev/null when we make the relevant addins calls, restoring it afterwards
* * Put in stubs for "load-oar" command, including ultra-primitive temporary ↵Justin Clarke Casey2008-05-281-0/+13
| | | | | | | | tar loading code * Currently as a test, this will successfully load only the first file of an opensim archive and do absolutely nothing with it
* *Hiding the warnings about scanning assemblies when initialising mingchen2008-05-281-2/+7
|
* * Write prim archives out as v7 tar files temporarily for testing purposes - ↵Justin Clarke Casey2008-05-271-1/+1
| | | | | | | | | not even gzipping yet! * Using hacked up code to create the correct tar archive headers - this stuff should really go away again before too long * No user functionality yet
* Update svn properties. Formatting cleanup.Jeff Ames2008-05-252-16/+16
|
* * If the SVN build version is not available, state this in the About box ↵Justin Clarke Casey2008-05-241-2/+6
| | | | explicitly, rather than leaving it out completely and possible engendering confusion
* * Bump reported svn trunk revision number up to 0.5.7Justin Clarke Casey2008-05-241-1/+1
|
* *Refactor of the LandManagementModule that allows OpenSim to run without itmingchen2008-05-231-1/+1
|
* * Plug in stubbed out archiver moduleJustin Clarke Casey2008-05-221-2/+4
|
* * Add (DEPRECATED) to load-xml/save-xml region console helpJustin Clarke Casey2008-05-221-2/+2
|
* * Documentation for load/save xml methodsJustin Clarke Casey2008-05-222-0/+19
| | | | | | | | | | * Insert the very rough beginning stubs for a save/load OpenSim archive facility that will load/save prim assets (textures & inventory) as well as the prim details themselves (our existing xml facilities). * This won't be ready for even rough testing for quite some time. * I'm doing this directly in the region server for now since this will be quicker to get something working (hence giving me the Serotonin boost that I need). However, there are very good arguments for later also including it (or moving it entirely) to the separate export executable which Sean stubbed out some time ago.
* Added "show regions" to the CL help screen. Mantis 1123Adam Johnson2008-05-221-0/+1
|
* Adding basic show users functionality back in to console. Mantis 1212Adam Johnson2008-05-221-0/+36
|
* * Minor: Tidy ups and logging tweaks.Justin Clarke Casey2008-05-221-2/+2
|
* * Refactor: Move enhancement of version string with operating system ↵Justin Clarke Casey2008-05-221-5/+23
| | | | | | | | information from Scene to OpenSimMain * This also means the operating system info will show up in the region console (and hence the logs)
* * Fix circular dependency from last checkin by passing version as a ↵Justin Clarke Casey2008-05-221-1/+2
| | | | | | | | parameter to Scene rather than referencing VersionInfo directly * Butt ugly solution
* * Send VersionInfo string instead of the hardcoded Scene string to the ↵Justin Clarke Casey2008-05-212-10/+8
| | | | | | | | | "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.
* * Deprecate load-xml and save-xml in favour of load-xml2/save-xml2.Justin Clarke Casey2008-05-211-0/+4
| | | | | | * Please file a mantis if you are not able to use load-xml2/save-xml2 but can successfully use load-xml/save-xml
* adding OSHttpRequest and OSHttpResponse which wrap HttpListenerRequest and ↵Dr Scofield2008-05-191-1/+3
| | | | | | | | | HttpListenerResponse respectively. enhancing IStreamHandler and IStreamedHandler interfaces so that OSHttp{Request,Response} get passed in, allowing RestHandlers to set response status code, redirections, etc.