Re: Finding numbers of visitors

2005-11-22 Thread Luciano Rodrigues da Silva
Well, I think I am not the best person to do this, but I can try. Can you gime some sugestion about the data the stats need to have. I think number of user in days, weeks, months, type of browser, geographic location, ...

Re: Finding numbers of visitors

2005-11-22 Thread Simon Willison
On 22 Nov 2005, at 17:43, Luciano Rodrigues da Silva wrote: I think that is time for the admin have some statistics usage of the applications. Or maybe another app include with the package. Stats is a very obvious application for Middleware. I bet you could do something very, very cool alo

Re: Finding numbers of visitors

2005-11-22 Thread Luciano Rodrigues da Silva
I think that is time for the admin have some statistics usage of the applications. Or maybe another app include with the package.

Re: Finding numbers of visitors

2005-11-22 Thread Adrian Holovaty
On 11/22/05, PythonistL <[EMAIL PROTECTED]> wrote: > Adrian, thank you for your reply. > I checked http://www.djangoproject.com/documentation/sessions/ and you > say:``Session dictionary keys that begin with an underscore are > reserved for internal use by Django. `` > So, I expect some to be ex

Re: Finding numbers of visitors

2005-11-22 Thread PythonistL
Adrian, thank you for your reply. I checked http://www.djangoproject.com/documentation/sessions/ and you say:``Session dictionary keys that begin with an underscore are reserved for internal use by Django. `` So, I expect some to be exist. Is there a list of such session dictionary keys that beg

Re: Finding numbers of visitors

2005-11-21 Thread Adrian Holovaty
On 11/21/05, PythonistL <[EMAIL PROTECTED]> wrote: > Is there a way how to find out ( via Django) all visitors at my > website at one time( both signed and guests)? > Would it be possible by using request.session? Yeah, this is certainly possible. Use the session framework: http://www.djangoproj

Finding numbers of visitors

2005-11-21 Thread PythonistL
Hello, Is there a way how to find out ( via Django) all visitors at my website at one time( both signed and guests)? Would it be possible by using request.session? Or is there a better way? Regards, L.