Le 16 déc. 09 à 19:08, Christopher Wright a écrit :

Why are Apple bugs secret ?

The QC team is no doubt swamped with 10.6 stuff (and maybe even 10.7 stuff by now?) - a good first step would be to see if this bug is fixed on 10.6 (I'm not on 10.6 at the moment, so I don't know). If it is fixed, then it's unlikely to get fixed on 10.5 (that's just how it works).
Yes, if have not tested on 10.6, because on 10.6 I have only a 13" screen and create quartz compositions on 13" screen is not happy... I have just tested the composition on 10.6 and yed, the bug is corrected.

If it's still on 10.6, it'll likely get addressed (on 10.6) if you file a bug report. Apple development triage (reportedly) happens based on bug reports, not mailing list traffic.

Just because Apple hasn't responded doesn't mean the bug is "secret" -- there are only so many hours in a day, and I'm sure things there are quite busy.
No, I speak not about the mailing list.

But about this :
In 10.5, there is a bug.
In 10.6, the bug is corrected. Then, Apple know there is a bug.

WHY DOES APPLE NOT CREATE THEN A "know bug list on Quartz Composer 10.5" ?
(and yes! a "know bug list on Quartz Composer 10.6" !).
I have loose hours because of this bug!

I'm very sad, because my english is very limited, and when I meet a bug, it's difficult for me to explain what happens.


At kineme, we've buggy releases too, not because we're malicious, or because we like to, but because we're human, and sometimes we're stupid, and we make mistakes.
No problem with bugs. But you are more open than Apple about bugs. Apple is probably mysteriously perfect ;)

Last time I checked, Apple didn't have a monopoly on the "bug-free programmer" market -- otherwise, 10.6 would be absolutely fabulously awesome, and I wouldn't be recklessly hostile towards QuickTime/ QTKit ;)
Sorry for my bad english, what I say lack nuance (in french : je ne connais pas suffisamment l'anglais pour m'exprimer en nuances, ce qui fait que ce que je dis est trop abrupt).


Christopher, is there perhaps a workaroud with javascript ?


Does this work for you?
<Grep.qtz>

Thanks. I have modified your code, so he has the same behavior as Grep patch.

For replaceString, I use a empty string.

And the code :
function (__string string) main (__string inputString, __string searchString, __string replaceString, __boolean CaseSensitive)
{
        var result = new Object();
        var regex;
        if(CaseSensitive)
                regex = new RegExp(searchString,"g");
        else
                regex = new RegExp(searchString,"gi");
        
        if (inputString.match(regex))
        result.string =searchString ;
        else
        result.string ="" ;
        
                //result.string = inputString.replace(regex, replaceString);

        return result;
}


Thanks :)





_______________________________________________
Do not post admin requests to the list. They will be ignored.
Quartzcomposer-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/quartzcomposer-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to