Re: [Opensim-dev] Proposal: Implement a de-duplicating core ROBUST asset service

2012-03-07 Thread James Stallings II
brilliant direction. +1 On Wed, Mar 7, 2012 at 9:44 PM, Cristina Videira Lopes wrote: > +1 on this. > > > On 3/2/2012 6:51 PM, Justin Clark-Casey wrote: > >> Hi folks. As we know, the space required for asset storage in >> OpenSimulator grows continuously over time. >> >> I think this is inevita

Re: [Opensim-dev] Proposal: Implement a de-duplicating core ROBUST asset service

2012-03-07 Thread Cristina Videira Lopes
+1 on this. On 3/2/2012 6:51 PM, Justin Clark-Casey wrote: Hi folks. As we know, the space required for asset storage in OpenSimulator grows continuously over time. I think this is inevitable in a web-like virtual world - distributed garbage collection is practically impossible. However, the

Re: [Opensim-dev] Problem registering region module

2012-03-07 Thread Dahlia Trimble
Do you have a "using Mono.Addins;" statement and a reference to the Mono.Addins dll? That's the only difference I see between yours and a region module of mine that works. On Wed, Mar 7, 2012 at 7:31 AM, Olli Aro wrote: > Hi all, > > ** ** > > I am migrating my old region modules to the late

Re: [Opensim-dev] Cloning avatar

2012-03-07 Thread Robert Martin
On Wed, Mar 7, 2012 at 10:34 AM, Olli Aro wrote: > Thanks for the info. It is possible to do that from eg call to the > RemoteAdmin? The problem I have is that I need to do this from an external > RubyOnRails application, hence used to do it before by directly manipulating > the database. im not

Re: [Opensim-dev] Cloning avatar

2012-03-07 Thread Kevin Cozens
On 12-03-07 08:15 AM, Olli Aro wrote: Does anyone know how I can copy the appearance of an existing user to a newly created user? With older version of OpenSim I used to do this by copying the rows in "avatars" database table. That should be all you need to do. Keep in mind that the current ver

Re: [Opensim-dev] Cloning avatar

2012-03-07 Thread Olli Aro
Hi Robert, Thanks for the info. It is possible to do that from eg call to the RemoteAdmin? The problem I have is that I need to do this from an external RubyOnRails application, hence used to do it before by directly manipulating the database. Regards, Olli -Original Message- From: open

[Opensim-dev] Problem registering region module

2012-03-07 Thread Olli Aro
Hi all, I am migrating my old region modules to the latest OpenSim and have problems registering the module with OpenSim. I have added the following lines in my code: [assembly: Addin("MyModule", "0.1")] [assembly: AddinDependency("OpenSim", "0.7")] . [Extension(Path = "/OpenSim/Re

Re: [Opensim-dev] Cloning avatar

2012-03-07 Thread Robert Martin
On Wed, Mar 7, 2012 at 8:15 AM, Olli Aro wrote: > Hi all, > > > > Does anyone know how I can copy the appearance of an existing user to a > newly created user? With older version of OpenSim I used to do this by > copying the rows in “avatars” database table. However, this no longer seems > to work

[Opensim-dev] Cloning avatar

2012-03-07 Thread Olli Aro
Hi all, Does anyone know how I can copy the appearance of an existing user to a newly created user? With older version of OpenSim I used to do this by copying the rows in "avatars" database table. However, this no longer seems to work with the latest version of OpenSim. Do, I now also have

Re: [Opensim-dev] Uniqueness in MySQL useraccounts ('Name' field)

2012-03-07 Thread Melanie
It allows to keep data from more than one grid in the same set of tables (for hosting multiple grids on shared systems) Melanie On 07/03/2012 11:42, Kevin Buckley wrote: > What does ScopeID do (if that can be answered in one sentence)? > > -Original Message- > From: opensim-dev-boun...@l

Re: [Opensim-dev] Uniqueness in MySQL useraccounts ('Name' field)

2012-03-07 Thread Kevin Buckley
What does ScopeID do (if that can be answered in one sentence)? -Original Message- From: opensim-dev-boun...@lists.berlios.de [mailto:opensim-dev-boun...@lists.berlios.de] On Behalf Of Melanie Sent: 07 March 2012 10:25 To: opensim-dev@lists.berlios.de Subject: Re: [Opensim-dev] Uniqueness

Re: [Opensim-dev] Uniqueness in MySQL useraccounts ('Name' field)

2012-03-07 Thread Melanie
Actually, it's the combination FirstName, LastName and ScopeID that needs to be kept unique as different scopes may well contain users with identical names. Such a change would break some existing code (web interfaces mostly). Opensim allows you to modify the database, so if you add/change this on