aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/General/Util.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2007-08-10Some cleaning up and removed a few old files no longer in use.MW1-0/+25
Temporary have had to rename the OpenSim.DataStore.MonoSqlite project to OpenSim.DataStore.MonoSqlite1, as I'm not sure what was done to stop the old project name being included in the VS2005 solution. Also some config changes: OpenSim now has a INI (OpenSim.ini) file that it will read some config settings from (if the ini file exists). Added Mono.Data.SqliteClient.dll so that we can use the same code for sqlite on Windows and mono/linux. (from what I can tell Mono class libraries have a MIT license so there should be no problems with us including this dll). So now to get the basic prim storage working , you need to first create the sqlite database file from the sqlite3-prims.sql in share directory. Then in the OpenSim.ini file, change the storage_plugin so it points to OpenSim.DataStore.MonoSqlite1.dll (storage_plugin = OpenSim.DataStore.MonoSqlite1.dll). Then in your region.xml files change the DataStore value so it is the name of your database file (at the moment you need a different sqlite3 database file for each region).
2007-08-03Changes to prepare for future possible configuration of separate logdir, ↵Brian McBee1-0/+34
configdir, datadir.
2007-08-01* Workaround for Mono not correctly implementing the OperatingSystemVersion ↵Adam Frisby1-2/+1
class.
2007-07-30* Added GetLocalHost() to UtilAdam Frisby1-0/+20
* ExternalHostName supports "SYSTEMIP" again.
2007-07-29* Added new compatibility functions to UtilAdam Frisby1-0/+55
* IsEnvironmentSupported() - returns whether the platform is supported, if not, an error message is specified (at the moment restricts 95/98/ME, Systems that lack HTTPD.SYS and versions of the .NET framework prior to 2.0) * GetFileName() - returns a system valid filename, on windows this places data in the Application Data directory, on UNIX, the folder in which the application is calling from.
2007-07-18* Added "GetHostFromDNS" to Util to replace the various DNS resolution ↵Adam Frisby1-0/+25
methods we use. Favours IPv4 addresses before IPv6 addresses to work around the Vista preference issue.
2007-07-16changed to native line ending encodingSean Dague1-184/+184
2007-07-03* Optimized usings (the 'LL ate my scripts' commit)lbsa711-2/+0
* added some licensing info