aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/Local/LocalUserServices.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-05-16Formatting cleanup.Jeff Ames1-1/+1
2008-05-01* Cleaned namespaces of entire solution. OpenSim directories now correspond ↵Adam Frisby1-1/+0
with namespaces.
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby1-1/+0
(this took a while to run).
2008-04-10further renaming of properties for claritySean Dague1-1/+1
2008-04-10moved fields to properties for UserDataProfile, which wasSean Dague1-1/+1
actually a little more work than I expected given the copious use of out params.
2008-03-18Formatting cleanup.Jeff Ames1-26/+25
2008-03-17* Make it more obvious if local user services are being usedJustin Clarke Casey1-3/+2
* Tell the log whether the sim is started in standalone or grid mode
2008-02-20Minor cleanup.Jeff Ames1-1/+1
2008-02-14Added a small but maybe important clue that UserServer is not running.Tedd Hansen1-1/+1
2008-02-04Refactor only: serve stats objects directly through StatsManager singletonJustin Clarke Casey1-3/+2
2008-01-28* Add total logouts (and total logins) to server side user statsJustin Clarke Casey1-1/+11
* Passing the stats collector through object chains is not ideal - this will change when more stats come in * This change will need a prebuild
2008-01-15* Mother of all commits:Adam Frisby1-1/+1
* Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
2007-12-27* Optimized usingslbsa711-1/+2
* shortened references * Removed redundant 'this' * Normalized EOF
2007-11-03*Master Avatar can be specified by a previous UUID in either grid mode or ↵mingchen1-0/+10
standalone mode by specifying a master_avatar_uuid attribute in the place of master_avatar_xxxx_name and master_avatar_password.You will not be asked for the name and password if a valid UUID is specified.
2007-10-30* Optimized usingslbsa711-4/+4
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW1-1/+1
Have flattened the OpenSim.Framework project/namespace. The problem is that the namespace is still wrong as its "OpenSim.Framework" while the directory is "OpenSim\Framework\General" , so we need to decide if we change the directory or correct the namespace. Note this has lead to a big flat project, but I think a lot of the files we most likely don't even use any longer. And others belong in other projects/namespaces anyway.
2007-10-15* Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa711-1/+29
2007-10-05== The "right name and place" commit ==lbsa711-1/+0
* Moved InventoryData to Framework.Types/InventoryItemBase.cs * Moved UserData to Framework.Interfaces/IUserData.cs * Moved UserProfileData to Framework/Types/UserProfileData.cs * Deleted ass-backwards Framework dependency on Framework.Data (now it's the other way round) * Changed some namespaces to reflect file structure
2007-10-03more refactoringMW1-0/+1
2007-10-02* Moved setup of LocalInventoryService and LocalUserServices to the app layerlbsa711-7/+7
* Killed off 'parent' relation from LocalUserServices to CommunicationsLocal * Deleted obsolete project InventoryServiceBase * Deleted superfluous createCol function
2007-09-27Reverting back to 2017 since 2018 were causing Linux breakage; reopening ↵lbsa711-3/+2
Tleiades patch 444 and 445.
2007-09-27* Tleiades grid mode inventory (#444) - thanx Tleiades!lbsa711-2/+3
* updated to rev 1413 on libsecondlife.dll and libsecondlife.dll.config (#423)
2007-09-24* Started major restructusing of comms to prepare for better grid and region ↵lbsa711-4/+4
functionality * Working towards one shared set of services * Killed off two projects with very little functionality
2007-09-24* Renamed methods on IUserDatalbsa711-11/+8
2007-09-24* minor renameslbsa711-10/+10
2007-09-24* Renamed stuff on UserManagerBase to get implicit implementation of ↵lbsa711-21/+7
IUserServices (instead of stubs)
2007-08-24Hopefully fixed the issue of inventory not working for the master account. ↵MW1-0/+4
(Note you will need to delete userprofile.yap for this to take effect.)
2007-08-13Separated Login Service from usermanager, which helps to clean up the code a ↵MW1-99/+2
bit and also should help to integrate the inventory server (when it is wrote/finished).
2007-08-13The Welcome message /message of the day shown in the client during login, ↵MW1-8/+17
can now be set from the .INI file for standalone mode (change the standalone_welcome = "Welcome to OpenSim" line).
2007-08-11Made account Authentication optional in "sandbox/standalone" mode. Just ↵MW1-4/+19
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.
2007-08-06* SimpleApp works again:lbsa711-2/+2
* 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
2007-08-01Some more work on SceneObject/primitive rewrites (AllNewSceneObjectGroup2 ↵MW1-0/+1
/Part2). Updated the JavaVM to a later version I did (basically some clean up and a little bit more functional). Added SendLoadURL method to IClientAPI.
2007-07-16changed to native line ending encodingSean Dague1-142/+142
2007-07-03* Optimized usings (the 'LL ate my scripts' commit)lbsa711-8/+2
* added some licensing info
2007-07-01Started change to having SceneObject and then that having child Primitives ↵MW1-5/+8
which in turn have a Shape object (currently PrimitiveBaseShape). The plan is only for the SceneObject to interface with the physics engines. As a physics Entity should be able to have mulitple shapes connected to it.
2007-07-01MAJOR IP RESTRUCTURINGlbsa711-3/+3
* moving towards IPEndPoints all over the place * trying to make the internal/external division
2007-07-01Fixed SimpleApp - aka thankgoditssundaycommitlbsa711-2/+2
* 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
2007-06-29*Hopefully fixed the empty dialog box error on client when logging in on ↵mingchen1-1/+1
sandbox mode
2007-06-28enabled physics plugin flying flags.MW1-0/+2
2007-06-28*User Profile requests on OGS UserServer now uses XMLRPC instead of REST mingchen1-0/+25
*Added base support for setting up a master user
2007-06-27*Added some missing files I forgot to add...OpenSim.sln should compile nowmingchen1-0/+118