Re: Data for globalization

2006-10-19 Thread Reinhard Knobelspies
I usually hate drop-downs as well, especially long drop-downs like country-fields with more than 130 selectable items. Therefore we mostly use such lists in combination with an AJAX autocomplete and select widget which makes filling in such forms way more convenient. http://code.djangoproject.com/

Re: Functional Benchmark : Django, Rails, CakePHP

2006-10-19 Thread jchatard
Hi Malcolm, First, thank you for your answer, which is quite completed. I give some answers next. Malcolm Tredinnick wrote: > I'm always inherently suspicious of benchmarks like this, since my > natural question is "how much has the author actually *used* the thing > he is evaluating? Has he don

Re: Data for globalization

2006-10-19 Thread GinTon
Please, post your message in this group http://groups.google.com/group/webda I would to have all discussion related to globalization data in the same group. So it could be usefull for that anothers frameworks could implementing those data too. Thanks! --~--~-~--~~~-

mod_python configuration problem (apache 2.2.2/mod_python 3.2.10)

2006-10-19 Thread Tipan
I'm a newbie to the Django/Python environment and have been working through the tutorials on the project site using the lite server - works fine. I now want to run the same projects on an Apache server using mod_python on a Windows PC. I've followed the installation instructions and have mod_pyth

Re: mod_python configuration problem (apache 2.2.2/mod_python 3.2.10)

2006-10-19 Thread Clint Ecker
Tipan, I think you're getting the error because there is nothing defined in your urls.py for the path /mysite/. Try going to http://localhost/mysite/polls/ and I'm thinking you'll see what you expected. If you wanted something to work at http://localhost/mysite/ you'd have to define a line in

Have django any schedule module?

2006-10-19 Thread 叮叮当当
sometimes the project need to schedule some task, so it is useful if django has schedule module . the turbogears has a schedule module, does django any similar module ? thanks very much. --~--~-~--~~~---~--~~ You received this message because you are subscribed

Re: mod_python configuration problem (apache 2.2.2/mod_python 3.2.10)

2006-10-19 Thread Clint Ecker
Also, you'd get a much better response by posting this thread to django-users instead of django-developers :) Clint On 10/19/06, Tipan <[EMAIL PROTECTED]> wrote: > > I'm a newbie to the Django/Python environment and have been working > through the tutorials on the project site using the lite ser

Re: Have django any schedule module?

2006-10-19 Thread canen
See this thread on the django-users group http://groups-beta.google.com/group/django-users/browse_thread/thread/62be2c28ee416ce7/053f43c037982fe4?lnk=gst&q=kronos&rnum=2#053f43c037982fe4 On Oct 19, 7:26 am, "叮叮当当" <[EMAIL PROTECTED]> wrote: > sometimes the project need to schedule some task, so i

Re: Functional Benchmark : Django, Rails, CakePHP

2006-10-19 Thread jhernandez
On 10/18/06, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > The Operating Systems row isn't complete (also GNU is an acronym and is > all capitals and Django even runs on Linux systems that aren't > GNU-based :-) ). I think it's quite the opposite :-) Django can run on GNU systems that doesn'

5 Yoga ebooks attached in ebook-share section

2006-10-19 Thread P K Kothari
-- With warm regardsP K Kotharihttp://audiobook-share.blogspot.com http://career-ebook.blogspot.com http://collection-share.blogspot.comhttp://ebook-share.blogspot.com http://management-article.blogspot.comhttp://finance-personal.blogspot.com http://powerpoint-presentation.blogspot.com --~--~---

Re: mod_python configuration problem (apache 2.2.2/mod_python 3.2.10)

2006-10-19 Thread Tipan
Clint, Thanks for the advice. I have changed the urls.py which is found in the mysite folder and this now brings the simple list of polls on to the screen (http://localhost/mysite/). Adding a /polls/ to the url throws up an error (as it did before). My urls.py now looks like this:

Re: Functional Benchmark : Django, Rails, CakePHP

2006-10-19 Thread Sung-Jin Hong
Why don't you also have a look at symfony ? It's a php framework developed mainly in France. And it is as popular as CakePHP I think.2006/10/19, jchatard < [EMAIL PROTECTED]>:Hi Malcolm, First, thank you for your answer, which is quite completed. I give someanswers next.Malcolm Tredinnick wrote:> I

Re: Call for testing: New setup.py

2006-10-19 Thread [EMAIL PROTECTED]
Adrian Holovaty wrote: > I've refactored Django's setup.py so that it uses the plain Python > distutils installation method rather than ez_setup/setuptools. This > means it no longer requires an Internet connection to install Django. > Hooray! Works for me: Python2.4 on Windows XP SP2 Lorenzo

Re: mod_python configuration problem (apache 2.2.2/mod_python 3.2.10)

2006-10-19 Thread Sean De La Torre
Your urlpatterns are not correct. Given your current apache configuration, the beginning of each of your patterns will need to start with '^mysite'. Alternatively, you can try removing the '^' at the beginning of each of the polls url patterns. That symbol indicates that the regex pattern shoul

Re: mod_python configuration problem (apache 2.2.2/mod_python 3.2.10)

2006-10-19 Thread Sean De La Torre
I made a mistake in the alternative section I posted in my last response. You would need to remove the '^' from each of the urlpatterns starting with '^polls' and replace it with '.*polls'. In any case, adding '^mysite' to the beginning of each urlpattern is the more explicit way to go. Sorry,

Integration of globalization data in Django/TurboGears

2006-10-19 Thread GinTon
I have created several tables in CSV format with globalization data (G11n). There are tables for countries, areas, languages, countries & languages, time zones, phones. And they are licensed under a Creative Commons license. http://svn.webda.python-hosting.com/trunk/G11n_data/ I created a new di

Re: Functional Benchmark : Django, Rails, CakePHP

2006-10-19 Thread Bryan
"and i hope he has mentioned our #django IRC channel - with a reputation for never RTFM'ing anyone ;-)" Bahahaha. And so true. On Oct 18, 7:23 pm, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > On 19-Oct-06, at 7:29 AM, Malcolm Tredinnick wrote: > > > should probably add mailing lists as a line

Re: feature request: Bonjour support

2006-10-19 Thread Jure Čuhalev
On 10/18/06, evariste <[EMAIL PROTECTED]> wrote: > If no one has added this by the time I'm more proficient in Django's > innards (I've only got about 8 hours' total experience in Django and I > haven't even finished my first tutorial yet), I'll submit a patch > myself and hope it gets accepted. I

Re: feature request: Bonjour support

2006-10-19 Thread evariste
Wow! I can't wait to try this out later tonight. Thanks, Jure! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To un

DP Api Issue

2006-10-19 Thread [EMAIL PROTECTED]
Thought I'd throw this up here since I've had no luck myself and no one seems to have an answer.. http://code.djangoproject.com/ticket/2919#preview --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers

override __hash__ in django.db.base.Model

2006-10-19 Thread favo
Since django Model has override __eq__ method, should override __hash__ method too. {{{ def __eq__(self, other): 86 return isinstance(other, self.__class__) and self._get_pk_val() == other._get_pk_val() }}} one possible implementation I think is, {{{ def __hash__(self): return ha

Re: override __hash__ in django.db.base.Model

2006-10-19 Thread Malcolm Tredinnick
On Thu, 2006-10-19 at 19:12 -0700, favo wrote: > Since django Model has override __eq__ method, should override __hash__ > method too. You are correct (since objects comparing equal should also hash to the same value). Please file bug reports in the Trac so that they don't get forgotten. Thanks,

Re: Functional Benchmark : Django, Rails, CakePHP

2006-10-19 Thread Kenneth Gonsalves
On 19-Oct-06, at 7:06 PM, jhernandez wrote: > Django can run on GNU systems that doesn't use a Linux kernel. seems like i have hurd this before -- regards kg http://lawgon.livejournal.com http://nrcfosshelpline.in/web/ --~--~-~--~~~---~--~~ You received thi

[attn -list admin] Re: 5 Yoga ebooks attached in ebook-share section

2006-10-19 Thread Kenneth Gonsalves
On 19-Oct-06, at 9:21 PM, P K Kothari wrote: > P K Kothari i thing it is time this guy was given the boot -- regards kg http://lawgon.livejournal.com http://nrcfosshelpline.in/web/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to

Re: override __hash__ in django.db.base.Model

2006-10-19 Thread favo
see #2936, #2937 http://code.djangoproject.com/ticket/2936 http://code.djangoproject.com/ticket/2937 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to dj