aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data.SQLite/SQLiteAssetData.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Optimized usingslbsa712007-10-301-56/+69
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW2007-10-291-2/+2
| | | | | | | 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.
* * Some asset loading refactoringlbsa712007-10-171-9/+12
|
* Asset server implementation. Again one of these "plumbing" releases, where ↵Tleiades Hax2007-10-131-1/+22
| | | | | | | no real functionality has been introduced, but ground work has been made, enabling the asset server, and preparing the sim server to query the asset server. Introduced an "IPlugin" interface, which plugins can inherit from.
* move the locks closer to the data, sqlite for assets now works like a champSean Dague2007-09-111-31/+34
|
* add DeleteAssetSean Dague2007-09-111-10/+14
| | | | | | | this also moves commit points around a bit for debuging, though this will change back now the MW has worked out synchronization
* added some debugging for tracing where asset code isn't working with sqliteSean Dague2007-09-101-1/+20
|
* mass update of urls in source code to new websiteSean Dague2007-09-101-1/+1
|
* hooked up sdague new sqlite asset database provider to the old asset system. ↵MW2007-09-101-3/+19
| | | | | | | | So we can still use sqlite for assets while we wait for the rest of the new asset system to be wrote. Needs more testing, so if it causes problems will have to swap back to db4o.
* added SQLiteAssetData class first pass. This should work,Sean Dague2007-09-071-0/+237
but it will current store local and temporary assets as well. Will fix that later.