aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Archiver (follow)
Commit message (Collapse)AuthorAgeFilesLines
* add prim item and test asset save in save oar unit testJustin Clark-Casey (justincc)2010-05-212-3/+31
|
* All scripts are now created suspended and are only unsuspended when the objectMelanie2010-04-191-0/+1
| | | | | | is fully rezzed and all scripts in it are instantiated. This ensures that link messages will not be lost on rez/region crossing and makes heavily scripted objects reliable.
* minor: use the static ascii and utf8 encodings instead of instantiating our ownJustin Clark-Casey (justincc)2010-04-161-6/+3
|
* Add --skip-assets option to load oar.Justin Clark-Casey (justincc)2010-04-163-24/+37
| | | | | This allows you to load an oar without loading its assets. This is useful if you know that the required assets are already in the asset service, since loading without assets is quicker. This option will become more useful when the ability to save oars without assets is added, which should happen fairly soon. At this point there will also be better documentation.
* * UuidGatherer now tracks asset types for assets it discovers. The asset ↵John Hurliman2010-03-152-12/+25
| | | | | | types are inferred from context * OAR saving will attempt to correct unknown asset types before writing broken assets to the OAR file
* Merge branch 'master' into presence-refactorMelanie2010-03-011-0/+2
|\
| * fix bug where region settings loaded via an oar (water height, terrain ↵Justin Clark-Casey (justincc)2010-02-261-0/+2
| | | | | | | | | | | | textures, etc.) were not being persisted to the database this meant that the loaded settings would disappear after a restart
* | Changed asset CreatorID to a stringJohn Hurliman2010-02-222-2/+2
| |
* | Merge branch 'presence-refactor' of ssh://opensimulator.org/var/git/opensim ↵John Hurliman2010-02-223-15/+39
|\ \ | | | | | | | | | into presence-refactor
| * \ Merge branch 'master' into presence-refactorMelanie2010-02-223-14/+38
| |\ \ | | |/ | | | | | | This brings presence-refactor up to master again
| | * forestall bug reports about the Command error: ↵Justin Clark-Casey (justincc)2010-02-192-2/+26
| | | | | | | | | | | | System.EntryPointNotFoundException: CreateZStream save/load oar/iar issue by telling the user what the likely problem is
| | * Formatting cleanup.Jeff Ames2010-02-151-12/+12
| | |
| * | One more test running.Diva Canto2010-02-211-1/+1
| | |
* | | * Adds CreatorID to asset metadata. This is just the plumbing to support ↵John Hurliman2010-02-222-2/+2
|/ / | | | | | | CreatorID, it doesn't modify database backends or OAR files to support storing/loading it
* | Merge branch 'master' into presence-refactorMelanie2010-02-083-114/+219
|\ \ | |/ | | | | | | This was a large, heavily conflicted merge and things MAY have got broken. Please check!
| * use common sop2 setup for TestMergeOarV0_2()Justin Clark-Casey (justincc)2010-01-291-16/+12
| |
| * make TestSaveOarV0_2() use a common part2 constructionJustin Clark-Casey (justincc)2010-01-291-18/+14
| |
| * use common part1 createio nin TestMergeOarV0_2()Justin Clark-Casey (justincc)2010-01-291-16/+5
| |
| * minor: swap which part uses the automatically set up scene in TestMergeOarV0_2()Justin Clark-Casey (justincc)2010-01-291-25/+13
| |
| * use common part1 creation in ArchiverTests.TestLoadOarV0_2()Justin Clark-Casey (justincc)2010-01-291-30/+28
| |
| * refactor out scene object 1 creation n ArchiverTetssJustin Clark-Casey (justincc)2010-01-291-44/+22
| |
| * factor out scene setup in ArchiverTestsJustin Clark-Casey (justincc)2010-01-291-40/+53
| |
| * Add method to get all items with the same name from a particular primJustin Clark-Casey (justincc)2010-01-291-5/+4
| | | | | | | | Extend load oar test to check loading of a sound item
| * Revert "Updates all IRegionModules to the new style region modules."Melanie2010-01-291-1/+0
| | | | | | | | This reverts commit ec3c31e61e5e540f822891110df9bc978655bbaf.
| * Merge branch 'master' of melanie@opensimulator.org:/var/git/opensimMelanie2010-01-233-3/+151
| |\
| | * Add first part of test for checking restore of task inventory items on oar loadJustin Clark-Casey (justincc)2010-01-222-1/+49
| | | | | | | | | | | | Passes but not yet complete
| | * complete assertion checks of all other oar loaded region settingsJustin Clark-Casey (justincc)2010-01-221-0/+28
| | |
| | * Allow oar loading to work even if an estate module is not presentJustin Clark-Casey (justincc)2010-01-222-2/+74
| | | | | | | | | | | | Write bare bones unit test for region setting loads
| * | Updates all IRegionModules to the new style region modules.Revolution2010-01-231-0/+1
| |/ | | | | | | Signed-off-by: Melanie <melanie@t-data.com>
* | OpenSim/Framework/Communications/Cache deleted. LibraryRootFolder deleted.Diva Canto2010-01-112-2/+2
| |
* | Remove all references to master avatar, replacing with estate owner whereMelanie2010-01-101-10/+6
| | | | | | | | | | appropriate. This changes the behavior of the REST plugins and RemoteAdmin's region creation process.
* | * OMG! All but one references to UserProfileCacheService have been rerouted!Diva Canto2010-01-101-2/+3
|/ | | | | * HG is seriously broken here * Compiles. Untested.
* Formatting cleanup. Add copyright headers.Jeff Ames2010-01-043-4/+4
|
* remove stringent content type checking to make it easier to load oars ↵Justin Clark-Casey (justincc)2009-11-271-2/+5
| | | | directly from urls
* minor: add doc to a few parcel methodsJustin Clark-Casey (justincc)2009-11-251-0/+10
|
* Implement oar mergingJustin Clark-Casey (justincc)2009-11-251-6/+10
| | | | | | | An oar can now be merged with existing region contents by using the --merge option For example, load oar --merge my.oar Existing terrain, region settings and parcel data is left in place when an oar is merged. See http://opensimulator.org/wiki/OpenSim_Archives#Usage for more information
* Add MIT/X11 licensed NDesk.Options (http://www.ndesk.org/Options) DLL to aid ↵Justin Clark-Casey (justincc)2009-11-251-1/+9
| | | | command line parsing
* make save and load oar slightly more robust by always closing the archive ↵Justin Clark-Casey (justincc)2009-11-243-13/+30
| | | | streams even if there has been an error
* pass all command parameters to load/save oar, not just the filenameJustin Clark-Casey (justincc)2009-11-241-0/+37
| | | | unfortunately, these commands cannot yet be properly relocated to the region modules due to deficiencies in the region module infrastructure
* Changing the AssetBase constructors to avoid initializing assets with an ↵John Hurliman2009-11-052-4/+5
| | | | unknown asset type, and log an error if it ever does happen
* * Log progress messages when loading OAR files with a lot of assetsJohn Hurliman2009-10-291-0/+3
| | | | | * Change the PhysicsCollision callback for objects to send full contact point information. This will be used to calculate the collision plane for avatars * Send the physics engine velocity in terse updates, not the current force being applied to the avatar. This should fix several issues including crouching through the floor and walking through walls
* Implemented a Watchdog class. Do not manually create Thread objects anymore, ↵John Hurliman2009-10-221-5/+3
| | | | use Watchdog.StartThread(). While your thread is running call Watchdog.UpdateThread(). When it is shutting down call Watchdog.RemoveThread(). Most of the threads in OpenSim have been updated
* - cleaning up LandData/ILandObject capitalization issuesdr scofield (aka dirk husemann)2009-10-022-7/+38
| | | | - adding LandDataSerializer to OAR mechanics
* Formatting cleanup.Jeff Ames2009-10-016-24/+24
|
* Stop a loaded OAR from generating on_rez events. This bringsAlan M Webb2009-09-161-1/+1
| | | | | the OAR loader in line with region restart (and the correct behavior).
* make oar module logging a little less noisyJustin Clark-Casey (justincc)2009-09-071-2/+2
|
* switching Archiver to "new" region module schemedr scofield (aka dirk husemann)2009-08-311-6/+24
|
* * Improves SceneSetupHelper to allow the tester to choose a real or mock, ↵Arthur Valadares2009-08-111-1/+1
| | | | | | | | inventory and asset, service modules. The boolean startServices was replaced with realServices string. If the string contains the word asset, it will start a real asset module, if it contains inventory, it starts a real inventory. Otherwise, it use mock (NullPlugin-like) objects, for tests that don't really need functionality. * SetupScene is now actually sharing the asset and inventory modules if the tester wishes to have multiple regions connected. To link regions, just start SetupScene with the same CommunicationManager for all scenes. SceneSetupHelper will hold a static reference to the modules and won't initialize them again, just run the scenes through the modules AddRegion, RegionLoaded and PostInitialize. * With the recent changes, both asset and inventory (and in the future, user) services should always be asked from the scene, not instantiated alone. The tests should reflect this new behavior and always start a scene.
* Removed IAssetCache.Diva Canto2009-08-101-3/+4
| | | | WARNING: PLEASE MAKE SURE TO USE THIS NEW bin/OpenSim.addin.xml
* From: Chris Yeoh <yeohc@au1.ibm.com>Sean Dague2009-06-292-13/+8
| | | | | | | | Attached is a patch that changes the oar file saving of creation date/time to an integer instead of a string. I did this after justincc emailed me saying there is a problem with internationalisation doing it the old way and I said I'd fix it. Its been tested with MySQL and I've made the changes for MSSQL but that hasn't been well tested.