Jared Jurkiewicz | 2 May 2007 21:09
Picon

Re: dojo.data / ignore case option?

This request has been added under tracker #2909.  Usage of it is simple, it is an option to set in the request keywordArgs.  Example:

jsonItemStore.fetch({query: {value: "bar\\*foo"}, queryIgnoreCase: true, onComplete: completed, onError: error});

Sincerely,
-- Jared Jurkiewicz


On 4/30/07, Brian Douglas Skinner <skinner <at> dojotoolkit.org > wrote:
An "ignore case" feature seems generally useful to me, and I would think
it would be easy to support for most datastores.  I don't know much
about i18n, so I'm not sure whether i18n would be an issue that we need
to think about here.  I'm also not sure how best to expose that feature
in the current API, but we can talk about it at the dojo.data meeting on
Tuesday.

:o) Brian


Jared Jurkiewicz wrote:
> No, there is no ignore case filtering option on dojo.data currently.  It
> could be added if the other contributors of dojo.data agree it's viable.
>
> Brian S, Chris M, , Tom Trenka,
>    Options?
>
> Sincerely,
> -- Jared Jurkiewicz
>
>
>
> On 4/30/07, Douglas Hays wrote:
>
>     While testing the newly dropped AutoCompleter widget, I noticed that
>     ca* does not match California.
>     Is there an "ignore case" option for dojo.data? I doubt it's viable
>     to do a * search and then to
>     do a regexp match on the client.
>
>     Doug Hays
>     doughays <at> us.ibm.com
_______________________________________________
dojo-contributors mailing list
dojo-contributors <at> dojotoolkit.org
http://dojotoolkit.org/mailman/listinfo/dojo-contributors

_______________________________________________
dojo-contributors mailing list
dojo-contributors <at> dojotoolkit.org
http://dojotoolkit.org/mailman/listinfo/dojo-contributors
Scott J. Miles | 2 May 2007 22:39

[0.9] Heads up on change to connect/disconnect

Today I've checked in a patch that changes the way dojo.disconnect works 
in 0.9 head on SVN.

 From now on, dojo.disconnect expects only a single argument: the 
'handle' returned from dojo.connect.

So, connect/disconnect pairs look like so:

var h = dojo.connect(foo, "onclick", bar, "click");
dojo.disconnect(h);

I updated all occurrences of disconnect that I could find in Dojo, 
Dijit, and Dojox as to try not to break anybody, but ymmv.

Typically, a Dijit will do something like this:

this.events = [
	dojo.connect(this.domNode, "onclick", this, "click"),
	dojo.connect(this.domNode, "onfocus", this, "focus")
];

and then later:

dojo.forEach(this.events, dojo.disconnect);

Regards,
Scott J. Miles
TurboAjax Group
http://www.turboajax.com
Dylan Schiemann | 3 May 2007 00:54

ddd/ny: pre-dinner


If anyone wants to have dinner Thursday night for DDD, let me know.

-Dylan
Karl Tiedt | 3 May 2007 02:13
Picon
Gravatar

Re: ddd/ny: pre-dinner

Does 7am (its kinda Thursday night still) work for you? :P

On 5/2/07, Dylan Schiemann <mail <at> dylans.org> wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> If anyone wants to have dinner Thursday night for DDD, let me know.
>
> - -Dylan
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.1 (Darwin)
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
>
> iD8DBQFGORal8nLgh/JJsxERAn6kAJ4myKEdVSCWWW4IlA6y2zhfosdjUQCeN7Do
> KSrGiPdzyp9rxHzpffrm+H0=
> =jknL
> -----END PGP SIGNATURE-----
> _______________________________________________
> dojo-contributors mailing list
> dojo-contributors <at> dojotoolkit.org
> http://dojotoolkit.org/mailman/listinfo/dojo-contributors
>

--

-- 
-Karl Tiedt
Tom Trenka | 3 May 2007 04:08
Picon

Re: ddd/ny: pre-dinner

I'd love to but I'll be out on Long Island with my family :(

trt

On 5/2/07, Dylan Schiemann <mail <at> dylans.org > wrote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

If anyone wants to have dinner Thursday night for DDD, let me know.

- -Dylan
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFGORal8nLgh/JJsxERAn6kAJ4myKEdVSCWWW4IlA6y2zhfosdjUQCeN7Do
KSrGiPdzyp9rxHzpffrm+H0=
=jknL
-----END PGP SIGNATURE-----
_______________________________________________
dojo-contributors mailing list
dojo-contributors <at> dojotoolkit.org
http://dojotoolkit.org/mailman/listinfo/dojo-contributors

_______________________________________________
dojo-contributors mailing list
dojo-contributors <at> dojotoolkit.org
http://dojotoolkit.org/mailman/listinfo/dojo-contributors
Adam L. Peller | 3 May 2007 04:26
Gravatar

Re: dojo.data / ignore case option?

So I don't know about i18n issues.  I guess that would be up the
individual implementations to get right anyhow?

On 4/30/07, Brian Douglas Skinner <skinner <at> dojotoolkit.org> wrote:
> An "ignore case" feature seems generally useful to me, and I would think
> it would be easy to support for most datastores.  I don't know much
> about i18n, so I'm not sure whether i18n would be an issue that we need
> to think about here.  I'm also not sure how best to expose that feature
> in the current API, but we can talk about it at the dojo.data meeting on
> Tuesday.
>
> :o) Brian
>
>
> Jared Jurkiewicz wrote:
> > No, there is no ignore case filtering option on dojo.data currently.  It
> > could be added if the other contributors of dojo.data agree it's viable.
> >
> > Brian S, Chris M, , Tom Trenka,
> >    Options?
> >
> > Sincerely,
> > -- Jared Jurkiewicz
> >
> >
> >
> > On 4/30/07, Douglas Hays wrote:
> >
> >     While testing the newly dropped AutoCompleter widget, I noticed that
> >     ca* does not match California.
> >     Is there an "ignore case" option for dojo.data? I doubt it's viable
> >     to do a * search and then to
> >     do a regexp match on the client.
> >
> >     Doug Hays
> >     doughays <at> us.ibm.com
> _______________________________________________
> dojo-contributors mailing list
> dojo-contributors <at> dojotoolkit.org
> http://dojotoolkit.org/mailman/listinfo/dojo-contributors
>
Chris Barber | 3 May 2007 05:20

Re: ddd/ny: pre-dinner

I'll be getting in around noon on Thurs and don't have any plans, so it would be awesome to tag along.  Do you have a place in mind?

- Chris


Dylan Schiemann wrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 If anyone wants to have dinner Thursday night for DDD, let me know. - -Dylan -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFGORal8nLgh/JJsxERAn6kAJ4myKEdVSCWWW4IlA6y2zhfosdjUQCeN7Do KSrGiPdzyp9rxHzpffrm+H0= =jknL -----END PGP SIGNATURE----- _______________________________________________ dojo-contributors mailing list dojo-contributors <at> dojotoolkit.org http://dojotoolkit.org/mailman/listinfo/dojo-contributors
_______________________________________________
dojo-contributors mailing list
dojo-contributors <at> dojotoolkit.org
http://dojotoolkit.org/mailman/listinfo/dojo-contributors
Andrea Giammarchi | 3 May 2007 10:19
Picon
Gravatar

Cocoon 2.2 and Dojo integration

I asked about 2 weeks ago about cocoon 2.2 and Dojo informations.
During these 2 weeks I've known about new Dojo "style", Dojo.base and Dijit.

At this point I wonder where I could find Cocoon 2.2 / Dojo[base|jit] informations or if there's something to read about them.

Could anyone help me?

Thank Yuo,
        Andrea Giammarchi

_______________________________________________
dojo-contributors mailing list
dojo-contributors <at> dojotoolkit.org
http://dojotoolkit.org/mailman/listinfo/dojo-contributors
Jesse Kuhnert | 3 May 2007 15:02
Picon
Gravatar

Re: Cocoon 2.2 and Dojo integration

Have you tried asking the cocoon devs?

On 5/3/07, Andrea Giammarchi <andrea.giammarchi <at> gmail.com> wrote:
I asked about 2 weeks ago about cocoon 2.2 and Dojo informations.
During these 2 weeks I've known about new Dojo "style", Dojo.base and Dijit.

At this point I wonder where I could find Cocoon 2.2 / Dojo[base|jit] informations or if there's something to read about them.

Could anyone help me?

Thank Yuo,
        Andrea Giammarchi

_______________________________________________
dojo-contributors mailing list
dojo-contributors <at> dojotoolkit.org
http://dojotoolkit.org/mailman/listinfo/dojo-contributors




--
Jesse Kuhnert
Tapestry/Dojo team member/developer

Open source based consulting work centered around dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
_______________________________________________
dojo-contributors mailing list
dojo-contributors <at> dojotoolkit.org
http://dojotoolkit.org/mailman/listinfo/dojo-contributors
Jared Jurkiewicz | 3 May 2007 15:23
Picon

Re: dojo.data / ignore case option?

   The simple implementation of this feature uses RegExp to do the pattern match (for most stores that filter clientside, this is plenty adequate).  I would presume RegExp already knows how to handle i18n, would it not, when doing a match and told to be case-sensitive? 

-- Jared

On 5/2/07, Adam L. Peller <adam <at> peller.org> wrote:
So I don't know about i18n issues.  I guess that would be up the
individual implementations to get right anyhow?

On 4/30/07, Brian Douglas Skinner <skinner <at> dojotoolkit.org > wrote:
> An "ignore case" feature seems generally useful to me, and I would think
> it would be easy to support for most datastores.  I don't know much
> about i18n, so I'm not sure whether i18n would be an issue that we need
> to think about here.  I'm also not sure how best to expose that feature
> in the current API, but we can talk about it at the dojo.data meeting on
> Tuesday.
>
> :o) Brian
>
>
> Jared Jurkiewicz wrote:
> > No, there is no ignore case filtering option on dojo.data currently.  It
> > could be added if the other contributors of dojo.data agree it's viable.
> >
> > Brian S, Chris M, , Tom Trenka,
> >    Options?
> >
> > Sincerely,
> > -- Jared Jurkiewicz
> >
> >
> >
> > On 4/30/07, Douglas Hays wrote:
> >
> >     While testing the newly dropped AutoCompleter widget, I noticed that
> >     ca* does not match California.
> >     Is there an "ignore case" option for dojo.data ? I doubt it's viable
> >     to do a * search and then to
> >     do a regexp match on the client.
> >
> >     Doug Hays
> >     doughays <at> us.ibm.com
> _______________________________________________
> dojo-contributors mailing list
> dojo-contributors <at> dojotoolkit.org
> http://dojotoolkit.org/mailman/listinfo/dojo-contributors
>
_______________________________________________
dojo-contributors mailing list
dojo-contributors <at> dojotoolkit.org
http://dojotoolkit.org/mailman/listinfo/dojo-contributors

_______________________________________________
dojo-contributors mailing list
dojo-contributors <at> dojotoolkit.org
http://dojotoolkit.org/mailman/listinfo/dojo-contributors

Gmane