Re: Web Stats

2007-04-01 Thread James Bennett
On 4/1/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Just wondering what app you're using for gathering Web Statistics with Django? I'm actually experimenting a bit right now. I've been using Mint[1] on my blog for a while and I like it, but on another site I've been playing with Google Anal

Re: Web Stats

2007-04-01 Thread Kenneth Gonsalves
On 02-Apr-07, at 11:19 AM, [EMAIL PROTECTED] wrote: >> Just wondering what app you're using for gathering Web Statistics >> with Django? > > As usually with any other projects > - awstats or webalizer > - Google Analytics scratchy, if you want python -- regards kg http://lawgon.livejourn

Re: Restructured text parsing not showing h1 levels.

2007-04-01 Thread James Bennett
On 4/2/07, Michael Lake <[EMAIL PROTECTED]> wrote: > I'll probably have to look at extending Markdown and potter back here and ask > questions when I get stuck. If you want to use ReST, remember that the Django template filter is not the only way to use it -- you could easily write your own filte

Re: Restructured text parsing not showing h1 levels.

2007-04-01 Thread Michael Lake
Hi > On Mon, 2007-04-02 at 15:24 +1000, Michael Lake wrote: > >>Hi all >>I have a problem I think when I use the markup package. This provides >>markdown, >>textile and restructuredtext markups. I have the following in views.py: >> >>def testwiki: >> >> content = ''' >>Restructured Text Te

My data contribution to django

2007-04-01 Thread TaMeR
Hi I been asking some novice questions and been getting great answers. As a thank you, I like to contribute and so I found my self something which could be usefull to others. I created a data model which includes: 1) All countries in sql format with following fields: Country,FIPS, ISO

Re: Web Stats

2007-04-01 Thread [EMAIL PROTECTED]
On Apr 2, 2:59 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Just wondering what app you're using for gathering Web Statistics with Django? As usually with any other projects - awstats or webalizer - Google Analytics --~--~-~--~~~---~--~~ You received

Re: Restructured text parsing not showing h1 levels.

2007-04-01 Thread Malcolm Tredinnick
On Mon, 2007-04-02 at 15:24 +1000, Michael Lake wrote: > Hi all > > I have a problem I think when I use the markup package. This provides > markdown, > textile and restructuredtext markups. I have the following in views.py: > > def testwiki: > > content = ''' > Restructured Text Test > =

Restructured text parsing not showing h1 levels.

2007-04-01 Thread Michael Lake
Hi all I have a problem I think when I use the markup package. This provides markdown, textile and restructuredtext markups. I have the following in views.py: def testwiki: content = ''' Restructured Text Test == How de do. Sub Heading --- Hi ''' return ren

Re: security of django.views.static.serve

2007-04-01 Thread Tony Maher
Malcolm Tredinnick wrote: > On Sun, 2007-04-01 at 19:34 -0700, tonym wrote: > >>Hello >> >>in http://www.djangoproject.com/documentation/static_files/ it states >> >> With that said, Django does support static files during >>development. >> Use the view django.views.static.serve to serve media

Re: security of django.views.static.serve

2007-04-01 Thread Malcolm Tredinnick
On Sun, 2007-04-01 at 19:34 -0700, tonym wrote: > Hello > > in http://www.djangoproject.com/documentation/static_files/ it states > > With that said, Django does support static files during > development. > Use the view django.views.static.serve to serve media files. > The big, fat discla

security of django.views.static.serve

2007-04-01 Thread tonym
Hello in http://www.djangoproject.com/documentation/static_files/ it states With that said, Django does support static files during development. Use the view django.views.static.serve to serve media files. The big, fat disclaimer Using this method is inefficient and insecure. Do not use

Re: Copy table Design many, many times

2007-04-01 Thread Ned Batchelder
To expand on what true.chesire is saying: There's really no reason to create many identical tables. Usually you'll want to create a single table with one more column to distinguish among the different instances. --Ned. [EMAIL PROTECTED] wrote: > >> I have tried eval with no success.. >> >>

Re: Copy table Design many, many times

2007-04-01 Thread [EMAIL PROTECTED]
> I have tried eval with no success.. > Try exec. Also, I think it is highly unlikely that there is no other ways to solve your problem in more elegant way. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django

Web Stats

2007-04-01 Thread [EMAIL PROTECTED]
Hi all Just wondering what app you're using for gathering Web Statistics with Django? Cheers Mark --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-u

Copy table Design many, many times

2007-04-01 Thread Robert
Hi, I have a specific project that I need to create a lot of identical PostgresSQL tables. I was hoping to do this directly in the django API. Now, I suppose it is possible to copy a class instance.. .. I also know that it is possible to copy tables one at a time by simply running them a child

Re: novice: filter works in shell but not in server

2007-04-01 Thread Malcolm Tredinnick
On Sun, 2007-04-01 at 16:04 -0700, TaMeR wrote: > > > = New Model == > > > from data.models import Data > > > > > class Route(models.Model): > > > #wday = > > > models.ManyToManyField(Data.objects.filter(name='weekdays') > > > > I'm not sure if this is the line you are trying to get to

Re: novice: filter works in shell but not in server

2007-04-01 Thread TaMeR
> > = New Model == > > from data.models import Data > > > class Route(models.Model): > > #wday = > > models.ManyToManyField(Data.objects.filter(name='weekdays') > > I'm not sure if this is the line you are trying to get to work, but > (apart from the missing closing parenthesis) it has

Re: Vote only once/Remembering votes

2007-04-01 Thread risomt
Just as a quick reply, check out the Comment system in django/contrib: http://code.djangoproject.com/browser/django/trunk/django/contrib/comments it has a karma like system and may or may not have unique votes On Apr 1, 3:08 pm, "SimpleMan" <[EMAIL PROTECTED]> wrote: > I'm creating something si

Re: Using a numeric POST in Newforms to serve a URL (You'd think that this would be easy. )

2007-04-01 Thread anders conbere
On 4/1/07, queezy <[EMAIL PROTECTED]> wrote: > > Hi Anders! > > Thanks a lot!! This is exactly what I need. > > Sincerely, > > -Warren Glad to help :) ~ Anders > > - Original Message - > From: "anders conbere" <[EMAIL PROTECTED]> > To: > Sent: Sunday, April 01, 2007 11:54 AM > Subject

Re: Using a numeric POST in Newforms to serve a URL (You'd think that this would be easy. )

2007-04-01 Thread queezy
Hi Anders! Thanks a lot!! This is exactly what I need. Sincerely, -Warren - Original Message - From: "anders conbere" <[EMAIL PROTECTED]> To: Sent: Sunday, April 01, 2007 11:54 AM Subject: Re: Using a numeric POST in Newforms to serve a URL (You'd think that this would be easy. )

Vote only once/Remembering votes

2007-04-01 Thread SimpleMan
I'm creating something similar to a social poll application. I need the site to remember and prevent users from voting multiple times on each poll, so I figured I would create a new SubmittedPoll model like described in this thread (anonymous users are not a concern): http://groups.google.com/grou

Re: Using a numeric POST in Newforms to serve a URL (You'd think that this would be easy. )

2007-04-01 Thread anders conbere
are you just looking for how to access post variables? request.POST is a dictionary that stores the post variables. if you want to access some id you post to the view you just do something like if request.POST: request.POST['id'] On 4/1/07, queezy <[EMAIL PROTECTED]> wrote: > > Hi! > > I t

Instantly Turn your Computer into a Super TV

2007-04-01 Thread bulu
Instantly Turn your Computer into a Super TV - http://surl.in/HLSTV238206SVRAKSX-google --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@google

Re: Simple model inheritance

2007-04-01 Thread Kenneth Gonsalves
On 01-Apr-07, at 10:18 PM, Kyle Fox wrote: >> Django's model inheritance will have an attribute to indicate that >> the >> base class is an abstract base, just as you are asking about. > > Do you mean this feature isn't yet in django? I haven't found > anything on the docs about this (I could

Re: Using a numeric POST in Newforms to serve a URL (You'd think that this would be easy. )

2007-04-01 Thread Kenneth Gonsalves
On 01-Apr-07, at 10:12 PM, queezy wrote: > Is there a pretty straightforward way to just POST a numeric and, > based on > that, serve a URL? it is straightforward - what problem are you experienceing? -- regards kg http://lawgon.livejournal.com http://nrcfosshelpline.in/web/ --~--~-

Re: Simple model inheritance

2007-04-01 Thread Kyle Fox
> Django's model inheritance will have an attribute to indicate that the > base class is an abstract base, just as you are asking about. Do you mean this feature isn't yet in django? I haven't found anything on the docs about this (I could really use it too!) If it's in the trunk, do you know w

Re: Using a numeric POST in Newforms to serve a URL (You'd think that this would be easy. )

2007-04-01 Thread queezy
Hi! I think (but I could be mistaken) that the article suggested on this is about going to different URLs. However, I want to just use newforms and, based on a simple form, POST a numeric. Upon arrival at the view (which is the SAME view for all form choices) the user is served up a PDF base

Re: Problem figuring out generic view with drop down box

2007-04-01 Thread anders conbere
On 4/1/07, queezy <[EMAIL PROTECTED]> wrote: > > Hi! > > I have this: http://somewebaddress/"; method="POST"> > and then this: > > > Click here to > choose > 100 Dummy Entry 1 > 106 Dummy Entry 2 >

Problem figuring out generic view with drop down box

2007-04-01 Thread queezy
Hi! I have this: http://somewebaddress/"; method="POST"> and then this: Click here to choose 100 Dummy Entry 1 106 Dummy Entry 2 107 Dummy Entry 3

Download Free ScreenSavers and Wallpapers!

2007-04-01 Thread bulu
Download Free ScreenSavers and Wallpapers! - http://surl.in/HLSCR238206SVRAKSX-google --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegr

Re: django on windows, problems following tutorial

2007-04-01 Thread Malcolm Tredinnick
Hi Colin, On Sun, 2007-04-01 at 03:18 -0700, CColin wrote: > Hi, > Recently downloaded the various prerequisites and am following the > online manual. > > All going reasonably well except until chapter 4, Templates. > > When trying to run the following command: > > >>>django.template import Te

django on windows, problems following tutorial

2007-04-01 Thread CColin
Hi, Recently downloaded the various prerequisites and am following the online manual. All going reasonably well except until chapter 4, Templates. When trying to run the following command: >>>django.template import Template I get: Traceback (most recent call last): File "", line 1, in fr

View this page "Frinzo - Dating & Friendship"

2007-04-01 Thread [EMAIL PROTECTED]
Click on http://groups.google.com/group/django-users/web/frinzo---dating-friendship - or copy & paste it into your browser's address bar if that doesn't work. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Djan

A New Dating & Friendship Website Now Open .. JOIN NOW FOR FREE .. !!

2007-04-01 Thread [EMAIL PROTECTED]
Meet your new and old friends on Frinzo.com Build your online friends network and see it growing just the way you want .. Frinzo is a very powerfull networking site. It will help you to find like minded people from all over the world. With Frinzo you can: * build your own network of contacts