Re: Making queries guide, incomplete code.

2008-10-15 Thread KillaBee
On Oct 15, 6:25 am, bruno desthuilliers <[EMAIL PROTECTED]> wrote: > On 15 oct, 13:09, "Russell Keith-Magee" <[EMAIL PROTECTED]> > wrote: > (snip) > > > Ok - that's enough of that sort of tone. Yes, Killabee would be well > > advised to read the fine manual, but there is no need to be rude while

Re: Making queries guide, incomplete code.

2008-10-15 Thread bruno desthuilliers
On 15 oct, 13:09, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: (snip) > Ok - that's enough of that sort of tone. Yes, Killabee would be well > advised to read the fine manual, but there is no need to be rude while > asking him/her to do so. If you don't want to answer his/her > questions, wa

Re: Making queries guide, incomplete code.

2008-10-15 Thread Russell Keith-Magee
On Wed, Oct 15, 2008 at 4:19 PM, bruno desthuilliers <[EMAIL PROTECTED]> wrote: > > On 15 oct, 01:57, KillaBee <[EMAIL PROTECTED]> > wrote: >> On Oct 14, 4:52 pm, bruno desthuilliers >> > (snip) >> Check, I have read the lovely guide, and Didn't have to know real >> Python until now. > > IOW : cop

Re: Making queries guide, incomplete code.

2008-10-15 Thread bruno desthuilliers
On 15 oct, 01:57, KillaBee <[EMAIL PROTECTED]> wrote: > On Oct 14, 4:52 pm, bruno desthuilliers > (snip) > Check, I have read the lovely guide, and Didn't have to know real > Python until now. IOW : copy/paste, programming by accident, and ask other people to do your homework for you ? Yes, fine

Re: Making queries guide, incomplete code.

2008-10-14 Thread KillaBee
On Oct 14, 4:52 pm, bruno desthuilliers <[EMAIL PROTECTED]> wrote: > On 14 oct, 23:25, KillaBee <[EMAIL PROTECTED]> > wrote: > > > > > On Oct 14, 4:17 pm, bruno desthuilliers > > > <[EMAIL PROTECTED]> wrote: > > > On 14 oct, 21:35, KillaBee <[EMAIL PROTECTED]> > > > wrote: > > > (snip) > > > > >

Re: Making queries guide, incomplete code.

2008-10-14 Thread bruno desthuilliers
On 14 oct, 23:25, KillaBee <[EMAIL PROTECTED]> wrote: > On Oct 14, 4:17 pm, bruno desthuilliers > > <[EMAIL PROTECTED]> wrote: > > On 14 oct, 21:35, KillaBee <[EMAIL PROTECTED]> > > wrote: > > (snip) > > > > No, it is very helpful, I know now that I have to learn all of python > > > and I know n

Re: Making queries guide, incomplete code.

2008-10-14 Thread KillaBee
On Oct 14, 4:17 pm, bruno desthuilliers <[EMAIL PROTECTED]> wrote: > On 14 oct, 21:35, KillaBee <[EMAIL PROTECTED]> > wrote: > (snip) > > > No, it is very helpful, I know now that I have to learn all of python > > and I know now that ... means variable. > > No. It means learning a computer progr

Re: Making queries guide, incomplete code.

2008-10-14 Thread bruno desthuilliers
On 14 oct, 21:35, KillaBee <[EMAIL PROTECTED]> wrote: (snip) > No, it is very helpful, I know now that I have to learn all of python > and I know now that ... means variable. No. It means learning a computer programming language - which in turn means having the slightest clue about what a compu

Re: Making queries guide, incomplete code.

2008-10-14 Thread KillaBee
On Oct 14, 1:47 pm, "Karen Tracey" <[EMAIL PROTECTED]> wrote: > On Tue, Oct 14, 2008 at 1:52 PM, KillaBee < > > > > [EMAIL PROTECTED]> wrote: > > On Oct 14, 12:14 pm, KillaBee <[EMAIL PROTECTED]> > > wrote: > > > On Oct 14, 12:07 pm, Brian Neal <[EMAIL PROTECTED]> wrote: > > > > > On Oct 14, 11:

Re: Making queries guide, incomplete code.

2008-10-14 Thread Karen Tracey
On Tue, Oct 14, 2008 at 1:52 PM, KillaBee < [EMAIL PROTECTED]> wrote: > On Oct 14, 12:14 pm, KillaBee <[EMAIL PROTECTED]> > wrote: > > On Oct 14, 12:07 pm, Brian Neal <[EMAIL PROTECTED]> wrote: > > > > > On Oct 14, 11:35 am, KillaBee <[EMAIL PROTECTED]> > > > wrote: > > > > > > I was reading the M

Re: Making queries guide, incomplete code.

2008-10-14 Thread KillaBee
On Oct 14, 12:14 pm, KillaBee <[EMAIL PROTECTED]> wrote: > On Oct 14, 12:07 pm, Brian Neal <[EMAIL PROTECTED]> wrote: > > > On Oct 14, 11:35 am, KillaBee <[EMAIL PROTECTED]> > > wrote: > > > > I was reading the Making queries guide on the the > > > website.http://docs.djangoproject.com/en/dev/t

Re: Making queries guide, incomplete code.

2008-10-14 Thread KillaBee
On Oct 14, 12:07 pm, Brian Neal <[EMAIL PROTECTED]> wrote: > On Oct 14, 11:35 am, KillaBee <[EMAIL PROTECTED]> > wrote: > > > > > I was reading the Making queries guide on the the > > website.http://docs.djangoproject.com/en/dev/topics/db/queries/#topics-db-que... > > It said: > > > >>> Blog.ob

Re: Making queries guide, incomplete code.

2008-10-14 Thread Brian Neal
On Oct 14, 11:35 am, KillaBee <[EMAIL PROTECTED]> wrote: > I was reading the Making queries guide on the the > website.http://docs.djangoproject.com/en/dev/topics/db/queries/#topics-db-que... > It said: > > >>> Blog.objects > > >>> b = Blog(name='Foo', > tagline='Bar') > >>> b.objects > > Traceb

Making queries guide, incomplete code.

2008-10-14 Thread KillaBee
I was reading the Making queries guide on the the website. http://docs.djangoproject.com/en/dev/topics/db/queries/#topics-db-queries It said: >>> Blog.objects >>> b = Blog(name='Foo', tagline='Bar') >>> b.objects Traceback: ... AttributeError: "Manager isn't accessible via Blog instances."