Re: [opensource-dev] CALLING ALL WINDOWS ENVIROMENT OS DEVS!!!!!!!!!!!!!!!

2010-11-01 Thread Ricky
Unless I'm mistaken, you can only declare a variable ONCe in a given
context.  However, you are typically free to define and re-define it
multiple times.
See the following snippet:
int my_integer; // a declaration
my_integer = 4; // a definition
my_integer = 8; // a re-definition (works)
int my_integer; // a re-declaration (always fails)

Since you are working with an array pointer, and you can only use the
{...} array initializer notation during declaration in C++ IIRC, then
proper control of context should get you past this hurdle:

// Scan dir2 and see if any file?.??c files are found
{
bool  expected8[5] = { true, true, false, false, false };
scanTest(dir2, "file?.??c", expected8);
}
// Scan dir2 and see if any *.??c files are found
{
bool  expected8[5] = { true, true, false, false, false };
scanTest(dir2, "*.??c", expected8);
}

Ricky
Cron Stardust

On Mon, Nov 1, 2010 at 7:58 AM, WolfPup Lowenhar
 wrote:
> For reference please see the following online repository:
>
>
>
> http://bitbucket.org/oz_linden/storm-102
>
>
>
> and also,
>
>
>
> http://bitbucket.org/oz_linden/storm-102/src/tip/indra/llvfs/tests/lldir_test.cpp#cl-380
>
>
>
>
>
> Code in question:
>
>
>
>   // Scan dir2 and see if any file?.??c files are found
>
>   bool  expected8[5] = { true, true, false, false, false };
>
>   scanTest(dir2, "file?.??c", expected8);
>
>   //bool  expected8[5] = { true, true, false, false, false };//
> re-initizalition will fail the build
>
>   scanTest(dir2, "*.??c", expected8);
>
>
>
> Now the issue:
>
> 1. When building the test it fails. You can only build it in release
> mode in visual studio as trying to build the test in particular in anything
> else will cause the resulting exe to crash and burn on run. Also if you try
> to the commented out step the build will fail no mater what.
>
> 2. With a working test program it will fail one of the tests no mater
> hominy times you run it or even rebuild it.
>
> 3. When running a debug of the test for some odd reason it will start
> trying to look at a null location causing the failure.(see attached debug
> file)
>
>
>
> I need some help getting this test to work right and not fail on a windows
> system. I welcome and help in this matter.
>
> ___
> Policies and (un)subscribe information available here:
> http://wiki.secondlife.com/wiki/OpenSource-Dev
> Please read the policies before posting to keep unmoderated posting
> privileges
>
___
Policies and (un)subscribe information available here:
http://wiki.secondlife.com/wiki/OpenSource-Dev
Please read the policies before posting to keep unmoderated posting privileges


Re: [opensource-dev] display name userstory

2010-11-01 Thread Erin Mallory

there is now a jira on this issue.   vwr-23662.   

Date: Sun, 31 Oct 2010 03:17:25 +1100
From: tat...@taterunino.net
To: opensource-dev@lists.secondlife.com
Subject: Re: [opensource-dev] display name userstory



  



  
  
Sounds like a showstopper to me.



On 31/10/2010 3:01 AM, Erin Mallory wrote:

  
  One more thing, the way it is now, it seems to break logging when
  the names were all displayed as ??? - ???.  I would get chat
  histories of one person I chatted with showing up in the im window
  of someone else when I opened or received a new im... 

  

  From: angel_of_crim...@hotmail.com

  To: babytje...@live.com; opensource-dev@lists.secondlife.com

  Date: Sat, 30 Oct 2010 11:58:28 -0400

  Subject: Re: [opensource-dev] display name userstory

  

  
  
  Aside from the friends list itself, I never had issues with
  avatars around me displaying their user names until the display
  name support was added.  In fact last night, I tested three
  versions of v2.  The official standard. what was the most recent
  dev build, and oz's test build of 255 which has support for
  display names.  Oz's test build was showing all names as ??? -???
  during the period when the grid seemed to be having major issues,
  where as the other two only showed "Loading" in the friends list.
  

  

  From: babytje...@live.com

  To: opensource-dev@lists.secondlife.com

  Date: Sat, 30 Oct 2010 14:04:35 +0200

  Subject: Re: [opensource-dev] display name userstory

  

  

  Nice but on tiny problem
   
  IF the client when it hapens alredy cant get First and
Last name how you suposte to get the username?
  username = first and last name
  and i would think that getting the Display Name is same
way as getting username(first and last name), i would assume
those info are together when fetching that data
   
  Greetings
  

   
  
From: Rob
Nelson 
Sent: Saturday, October 30, 2010 1:58 PM
To: opensource-dev@lists.secondlife.com

Subject: Re: [opensource-dev] display name
  userstory
  

 
  
  How about
"username (Loading...)", in order to queue people in as to
why their display names aren't showing up.  Should relieve
pressure on support staff.



Rob



On 10/29/2010 8:47 PM, Erin Mallory wrote:

   as a user, if there are network issues in SL I would like
  display name enabled clients to NOT report avatars as
  ???-??? but rather default to user name or ??? - username
  

  
  

  ___
  Policies and (un)subscribe information available here:
  http://wiki.secondlife.com/wiki/OpenSource-Dev
  Please read the policies before posting to keep unmoderated
  posting privileges 

  ___
  Policies and (un)subscribe information available here:
  http://wiki.secondlife.com/wiki/OpenSource-Dev
  Please read the policies before posting to keep unmoderated
  posting privileges
  
___
Policies and (un)subscribe information available here:
http://wiki.secondlife.com/wiki/OpenSource-Dev
Please read the policies before posting to keep unmoderated posting privileges



-- 
Tateru Nino
http://dwellonit.taterunino.net/

  


___
Policies and (un)subscribe information available here:
http://wiki.secondlife.com/wiki/OpenSource-Dev
Please read the policies before posting to keep unmoderated posting privileges  
  ___
Policies and (un)subscribe information available here:
http://wiki.secondlife.com/wiki/OpenSource-Dev
Please read the policies before posting to keep unmoderated posting privileges

Re: [opensource-dev] texture preview pane

2010-11-01 Thread Rob Nelson
Uh, try increasing your resolution?  I can't see how anyone can 
realistically use the UI when it's crunched down to that size.

On 11/1/2010 1:54 PM, Erin Mallory wrote:
okay, not sure exactly when or how this broke, but I only noticed this 
today and this makes texture previewing and sorting very difficult.  
Notice you cant read the titles or easily see what you're navigating 
to. see https://jira.secondlife.com/browse/VWR-23667



___
Policies and (un)subscribe information available here:
http://wiki.secondlife.com/wiki/OpenSource-Dev
Please read the policies before posting to keep unmoderated posting privileges


___
Policies and (un)subscribe information available here:
http://wiki.secondlife.com/wiki/OpenSource-Dev
Please read the policies before posting to keep unmoderated posting privileges

[opensource-dev] [META] Related JIRA Issue Creation

2010-11-01 Thread Ricky
I have several ideas that I would like to put on the JIRA. However,
each of these ideas is composed of several logically separate
features.  Should I just make one large single JIRA entry, and split
it up if asked, or should I enter each separately, and then create a
meta issue that combines them into the cohesive whole?

For example I'm working out some upgrades for the minimap/nearby list.
 On my brainstorm paper this one idea has no less than 6 compatible
features that, when combined, create a single major user interaction
upgrade in that area. (IMHO :P )

Thanks,
Ricky
Cron Stardust
___
Policies and (un)subscribe information available here:
http://wiki.secondlife.com/wiki/OpenSource-Dev
Please read the policies before posting to keep unmoderated posting privileges


Re: [opensource-dev] texture preview pane

2010-11-01 Thread Ricky
At least without dropping the UI Size to something like 0.875 or
lower...  Although decreasing UI size often comes with it's own
breakage!

That said, the UI shouldn't break like shown.

Ricky
Cron Stardust

On Mon, Nov 1, 2010 at 2:14 PM, Rob Nelson  wrote:
> Uh, try increasing your resolution?  I can't see how anyone can
> realistically use the UI when it's crunched down to that size.
> On 11/1/2010 1:54 PM, Erin Mallory wrote:
>
> okay, not sure exactly when or how this broke, but I only noticed this today
> and this makes texture previewing and sorting very difficult.  Notice you
> cant read the titles or easily see what you're navigating to. see
> https://jira.secondlife.com/browse/VWR-23667
>
> ___
> Policies and (un)subscribe information available here:
> http://wiki.secondlife.com/wiki/OpenSource-Dev
> Please read the policies before posting to keep unmoderated posting
> privileges
>
> ___
> Policies and (un)subscribe information available here:
> http://wiki.secondlife.com/wiki/OpenSource-Dev
> Please read the policies before posting to keep unmoderated posting
> privileges
>
___
Policies and (un)subscribe information available here:
http://wiki.secondlife.com/wiki/OpenSource-Dev
Please read the policies before posting to keep unmoderated posting privileges


[opensource-dev] Where do I ask for a feature ?

2010-11-01 Thread Laurent Bechir

Hello,

Where do I ask for a feature ? Should I open a Jira ? Mine is not a big 
one, it's just a check box in the confirmation window which arise when I 
share an object with someone to have the possibility to disable it like 
I can with other windows (teleport, ...)

Thank you
___
Policies and (un)subscribe information available here:
http://wiki.secondlife.com/wiki/OpenSource-Dev
Please read the policies before posting to keep unmoderated posting privileges


Re: [opensource-dev] [META] Related JIRA Issue Creation

2010-11-01 Thread Sarah (Esbee) Hutchinson
Hi Ricky,

I would suggest that you submit the epic-level user story as a feature
request, then each of the compatible features could be added to the feature
request as a sub-task. That will make it easier for me to review when you
submit.

Let me know if you have any questions and I'll be happy to help!

Best,
Esbee



On Mon, Nov 1, 2010 at 5:20 PM, Ricky  wrote:

> I have several ideas that I would like to put on the JIRA. However,
> each of these ideas is composed of several logically separate
> features.  Should I just make one large single JIRA entry, and split
> it up if asked, or should I enter each separately, and then create a
> meta issue that combines them into the cohesive whole?
>
> For example I'm working out some upgrades for the minimap/nearby list.
>  On my brainstorm paper this one idea has no less than 6 compatible
> features that, when combined, create a single major user interaction
> upgrade in that area. (IMHO :P )
>
> Thanks,
> Ricky
> Cron Stardust
> ___
> Policies and (un)subscribe information available here:
> http://wiki.secondlife.com/wiki/OpenSource-Dev
> Please read the policies before posting to keep unmoderated posting
> privileges
>
___
Policies and (un)subscribe information available here:
http://wiki.secondlife.com/wiki/OpenSource-Dev
Please read the policies before posting to keep unmoderated posting privileges

Re: [opensource-dev] Where do I ask for a feature ?

2010-11-01 Thread Sarah (Esbee) Hutchinson
Hi Laurent,

To request a feature, simply log into https://jira.secondlife.com/ and click
the "Create Issue" button in the upper right-hand corner of the page. The
project will be VWR and your issue type is "Feature Request".

Once you submit it, we'll pick it up in triage and review!

Best,
Esbee


On Mon, Nov 1, 2010 at 5:38 PM, Laurent Bechir
wrote:

>
> Hello,
>
> Where do I ask for a feature ? Should I open a Jira ? Mine is not a big
> one, it's just a check box in the confirmation window which arise when I
> share an object with someone to have the possibility to disable it like
> I can with other windows (teleport, ...)
>
> Thank you
> ___
> Policies and (un)subscribe information available here:
> http://wiki.secondlife.com/wiki/OpenSource-Dev
> Please read the policies before posting to keep unmoderated posting
> privileges
>
___
Policies and (un)subscribe information available here:
http://wiki.secondlife.com/wiki/OpenSource-Dev
Please read the policies before posting to keep unmoderated posting privileges

Re: [opensource-dev] [META] Related JIRA Issue Creation

2010-11-01 Thread Ricky
Thanks!  That's what I figured, as that was the most logical structure
I could think of when creating my MindMap (using FreeMind) edition of
my scribbled notes.

Ricky
Cron Stardust

On Mon, Nov 1, 2010 at 3:48 PM, Sarah (Esbee) Hutchinson
 wrote:
> Hi Ricky,
>
> I would suggest that you submit the epic-level user story as a feature
> request, then each of the compatible features could be added to the feature
> request as a sub-task. That will make it easier for me to review when you
> submit.
>
> Let me know if you have any questions and I'll be happy to help!
>
> Best,
> Esbee
>
>
>
> On Mon, Nov 1, 2010 at 5:20 PM, Ricky  wrote:
>>
>> I have several ideas that I would like to put on the JIRA. However,
>> each of these ideas is composed of several logically separate
>> features.  Should I just make one large single JIRA entry, and split
>> it up if asked, or should I enter each separately, and then create a
>> meta issue that combines them into the cohesive whole?
>>
>> For example I'm working out some upgrades for the minimap/nearby list.
>>  On my brainstorm paper this one idea has no less than 6 compatible
>> features that, when combined, create a single major user interaction
>> upgrade in that area. (IMHO :P )
>>
>> Thanks,
>> Ricky
>> Cron Stardust
>> ___
>> Policies and (un)subscribe information available here:
>> http://wiki.secondlife.com/wiki/OpenSource-Dev
>> Please read the policies before posting to keep unmoderated posting
>> privileges
>
>
___
Policies and (un)subscribe information available here:
http://wiki.secondlife.com/wiki/OpenSource-Dev
Please read the policies before posting to keep unmoderated posting privileges


[opensource-dev] [JIRA] VWR-23670 - Enhance the Nearby list to make it a full-fledged radar replacement

2010-11-01 Thread Ricky
I just created https://jira.secondlife.com/browse/VWR-23670 and 10
subtasks to document and provide a guiding single-purpose idea
consolidation for the concept I've heard voiced many times about how
the Nearby list should be made into a good radar system.  As far as I
can tell, all the needed information is already supplied to the
viewer, it just needs an output on the UI.

The concept is presented through (currently) 10 subtasks, as each
separate enhancement is independent of the others and provides a
useful upgrade all on its own.

And, again, I wish I had the time to make patches for some of these,
as most seem fairly trivial.  But I'm working on my Bachelors in Game
and Simulation programming at the moment, and the school is running me
hard! :P  Thankfully only a year or so to go though!

Ricky
Cron Stardust
___
Policies and (un)subscribe information available here:
http://wiki.secondlife.com/wiki/OpenSource-Dev
Please read the policies before posting to keep unmoderated posting privileges


Re: [opensource-dev] Where do I ask for a feature ?

2010-11-01 Thread Laurent Bechir


Sarah (Esbee) Hutchinson a écrit :
> Hi Laurent,
>
> To request a feature, simply log into https://jira.secondlife.com/ and 
> click the "Create Issue" button in the upper right-hand corner of the 
> page. The project will be VWR and your issue type is "Feature Request".
>
> Once you submit it, we'll pick it up in triage and review!
>
> Best,
> Esbee
>
>

Done : https://jira.secondlife.com/browse/VWR-23681

with another one concerning Notifications :

https://jira.secondlife.com/browse/VWR-23682
___
Policies and (un)subscribe information available here:
http://wiki.secondlife.com/wiki/OpenSource-Dev
Please read the policies before posting to keep unmoderated posting privileges


Re: [opensource-dev] possible display name crash

2010-11-01 Thread Twisted Laws

Thanks, the patch in that jira corrected the problem I was having.  No more 
crashes for me, yeah!
 
> I'm not sure if this is actually your crash, but it seems to match rather
> closely with a lot of what you described:
> https://jira.secondlife.com/browse/VWR-23653 (patch attached).
> 
> Kitty
  ___
Policies and (un)subscribe information available here:
http://wiki.secondlife.com/wiki/OpenSource-Dev
Please read the policies before posting to keep unmoderated posting privileges