aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/ClientView.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Fixes an issue with the BaseHttpServer in LinuxTeravus Ovares2008-04-151-1/+1
| | | | | | | | * Fixes an estate naming issue * Fixes a land issue with the landobject not reporting the proper parcel prim. * A few other tweaks.
* * Working towards notifying the client if the inventory service has failed, ↵Justin Clarke Casey2008-04-141-3/+6
| | | | | | | | | rather than simply returning 0 items. * This is very early support which would only be triggered in a rather unlikely case (if the user server correctly received an inventory skeleton, but later on failed to return the whole inventory in a timely manner. Also, this only applies to the 1.19.1.4 client onwards * Code cleanup and support for other failure cases (failure of inventory caching on region crossing, failure to actually add a folder/item, etc, should follow.
* * Fixed a few warnings.Teravus Ovares2008-04-141-0/+25
| | | | | | | * Added license info to a few files it was missing from. * Fleshed out the landbuy interfaces * If you add '-helperuri http://127.0.0.1:9000/' to your list of parameters you tell the client to use when you start it up you can transfer ownership of parcels now in standalone. Structured gridmode requires a lot more work, see the documentation in the example money module. The example money module is not secure especially in standalone mode.
* * Temporarily, stop the exception of mantis #951 from killing the entire ↵Justin Clarke Casey2008-04-131-1/+13
| | | | client session.
* further renaming of properties for claritySean Dague2008-04-101-5/+5
|
* moved fields to properties for UserDataProfile, which wasSean Dague2008-04-101-5/+5
| | | | | | | actually a little more work than I expected given the copious use of out params.
* * Updates BetaGridLikeMoneyModuleTeravus Ovares2008-04-101-15/+60
| | | | | | | * Several people have asked for a way to limit uploads, so I've decided to show people how to do this in the BetaGridLikeMoneyModule. * Configure it in OpenSim.ini using the [Economy] header. See the bottom of the OpenSim.ini.example for more information. * This also fleshes out the Economy API a bit more.
* From: Michael Osias <mosias@us.ibm.com>Justin Clarke Casey2008-04-091-0/+3
| | | | | | | "This is llDetectedKey for touch_start - it is already implemented for sensor." Thanks Michael
* * Following A_Biondi's suggestion, going to try returning a version number ↵Justin Clarke Casey2008-04-081-1/+1
| | | | | | | | of 1 instead of 0 for the folder requested in a InventoryDescendentsPacket * Can't hurt - it doesn't appear to cause any problems in a quick test.
* more refactoring, this time on InventoryFolderBaseSean Dague2008-04-071-4/+4
| | | | | | | | * wrap attributes in properties * clean up names a little bit * clean up name styles
* Refactor InventoryItemBase to do the following:Sean Dague2008-04-071-53/+53
| | | | | | | | * wrap fields as Properties * rename some fields/properties to more sensible names * set style to PropName to match more standard C# approach
* Remove some dead code.Jeff Ames2008-04-071-13/+0
|
* * EXPERIMENTAL ROUGH DRAFT: First rough implementation of avatar to avatar ↵Justin Clarke Casey2008-04-071-4/+80
| | | | | | | | | | | item giving * Now you can drag an object from your inventory and give it to another avatar * !!! Use at your own risk !!! Many things are unimplemented as of yet, including permissions (the person receiving your item can probably do absolutely everything with it) * Also, items for the receiving end up in their root folder rather than the objects folder
* * Implemented AgentPause and AgentResume. AgentPause extends the timeout ↵Teravus Ovares2008-04-061-7/+22
| | | | | | | for a client at the server by 3x. AgentResume restores the timeout to the normal amount. * The linden client still doesn't like it when you have an image select box open for more then 100 or so seconds.
* * Resolve mantis 849Justin Clarke Casey2008-04-031-1/+1
| | | | | | * Scripts in prims within linksets can now be properly edited using the 'edit linked parts' linden ui option
* few more minor changes, needs prebuild to be ran.MW2008-04-011-5/+0
|
* * Minor cleanupTeravus Ovares2008-03-301-1/+0
|
* This update has good news and bad news, first the bad.Teravus Ovares2008-03-301-0/+21
| | | | | | | | | | * This update breaks inter-region communications, sorry. * You will need to run prebuild. Next, the good; * This update solves the unexpected binary element when Linux simulators inform windows simulators and vice versa. So Linux Simulators and Windows simulators are 100% compatible again. * This update introduces an Integer in the prim crossing method to tell the receiving simulator which XML method to use to load the prim that crossed the border. If the receiving prim doesn't support the method, the prim crossing fails and no prims are lost. That being said, it's best to update all your simulators to this revision at once.
* * Various 1.19.0.5 grid inventory request fixes. These will only take ↵Justin Clarke Casey2008-03-291-4/+1
| | | | | | | | | | | | affect once the region and the grid servers have upgraded to this revision * You may also need to clear your cache before seeing any effect. * These fixes may or may not affect inventory on the RC client. * These fixes should make non-root folders work better, stop inventory failure on first login, allow trash to be emptied and make texture picker in object edit view work properly * Fixes are 1) make initial root folder request wait for async inventory delivery, 2) deliver all folders in the initial login skeleton, not just the root child ones and 3) deal with situations where we receive child folders from the inventory service before their parent is received.
* Minor formatting / svn properties cleanup.Jeff Ames2008-03-251-2/+1
|
* Implements llLoopSound(), llStopSound(), and llAdjustSoundVolume(). alondria2008-03-221-0/+9
|
* Remove a couple more compiler warnings by commenting unused variables.Charles Krinke2008-03-211-1/+2
| | | | | This takes us down to 15 compiler warnings on a VS2005 C# build.
* * Removed more encoding faults.Adam Frisby2008-03-211-12/+1
|
* * Removed a bad encoder.Adam Frisby2008-03-211-4/+2
|
* * Converted a large number of ASCII encodings to UTF8.Adam Frisby2008-03-211-7/+13
| | | | | | | * We should not be using ASCII anywhere except for legacy compatibility reasons. * A large number of UTF8 Encoders are being used in places where we should be using Util.StringToField instead. These have been tagged with // ENCODING FAULT * This should fix Mantis#799 - Japanese Profile Text does not work.
* * First draft resolution of mantis 777, 734, 389 - scripts do not save in ↵Justin Clarke Casey2008-03-201-1/+1
| | | | | | | | | | | | non-home regions * Should work in multi-region standalone and grid modes * This should also solve other non-home region caps issues (map requests, RC client inventory requests, etc) * We now pass CAPS information on to the destination region on region crossing, and set up a CAPS object when an agent becomes a master * Current limitation is that this will only work if your http_listener_port is 9000 * This is a very early code cut (lots of bad practice, hard coding and inefficiency). However, I wanted to get this out there for feedback and my own sanity. Next few patches will clean up the mess.
* Thanks Ahzzmandius for fix for overflow in user profile About box or First ↵Jeff Ames2008-03-191-2/+2
| | | | Life About box when using non-ASCII encodings (bug #769).
* Formatting cleanup.Jeff Ames2008-03-181-26/+26
|
* Formatting cleanup.Jeff Ames2008-03-181-47/+6
|
* * Inserting code to prepare to fix trash emptying and the edit texture ↵Justin Clarke Casey2008-03-171-58/+60
| | | | | | | | inventory (again) * Can't just do this fix since it stops subfolders working (though it appears subfolder renaming may be fubar at the moment)
* Replaced some magic PCode numbers with enum values.Jeff Ames2008-03-171-2/+2
|
* Replaced some Console.WriteLine calls with writes to log.Jeff Ames2008-03-171-12/+12
|
* Fix Mantis 636Sean Dague2008-03-141-1/+1
|
* * You can leave godmode if you want now.Teravus Ovares2008-03-141-1/+2
| | | | | * Fixed a compile error.
* * Add comments and slight corrections to ClientView.AgentTextureCachedJustin Clarke Casey2008-03-121-4/+13
| | | | | | * Reduce 'asset not found' console debug spam
* Applied patch from mantis #749, Grass now stays to set type when moved. ↵MW2008-03-121-6/+8
| | | | thanks Grumly57.
* * Very temporarily put AgentCachedTexturePackets onto the wind rather than ↵Justin Clarke Casey2008-03-111-1/+5
| | | | | | | | | the texture queue * This is in order to identify whether it is these which are somehow causing the massive texture packet bloat, * since this is the only other packet put on to that queue other than the TextureSender ones
* * Removed more compiler warnings, dead code, etc.Adam Frisby2008-03-051-1/+0
|
* Merged 3Di code that provides scene and avatar serialization, and plugin ↵Johan Berntsson2008-03-041-4/+141
| | | | support for region move/split/merge. See ThirdParty/3Di/README.txt. Unless the new modules are used there should be no noticeable changes when running OpenSim.
* * Fixed about Text in the profile in grid mode.Teravus Ovares2008-03-031-1/+4
|
* * Applying Ahzz's profile patch. Thanks Ahzz! Teravus Ovares2008-03-031-4/+23
| | | | | | * Fixed a few bugs in the patch that are sim crashers. * There's still a bug in mySQL mode/ grid mode where the main userprofile text doesn't save.
* Change handler001 through handler009 to moreCharles Krinke2008-03-021-36/+36
| | | | | | | | appropriate names consisten with their use. All done with all 94 handlers from handler001 through handler094. Hopefully we can move forward without numbered handlers.
* Update names of handler010 through handler019Charles Krinke2008-03-021-41/+41
| | | | | | to more appropriate names consistent with use.
* Applying Ahzzmandius' second patch from bug 701. Teravus Ovares2008-03-021-0/+1
| | | | | | ClientView triggers OnClose event before flushing packetqueue. Thank sAhzzmandius!
* Rename handler020 through handler029 with moreCharles Krinke2008-03-021-41/+41
| | | | | appropriate names consistent with their use.
* Rename handler030 through handler038 with moreCharles Krinke2008-03-021-44/+44
| | | | | appropriate names consisten with their use.
* Rename handler040 through handler049 with moreCharles Krinke2008-03-021-42/+42
| | | | | appropriate names consistent with their user.
* Rename handler050 through handler059 with moreCharles Krinke2008-03-021-42/+42
| | | | | appropriate names consistent with their use.
* Rename handler060 through handler069 with moreCharles Krinke2008-03-021-42/+42
| | | | | appropriate names consistent with their use.
* Rename handler070 through handler079 with moreCharles Krinke2008-03-021-43/+43
| | | | | appropriate names consistent with their use.