Search Results

0
votes

Django: Model limit_choices_to={’user’: user}

I'm not sure that I fully understand exactly what you want to do, but I think that there's a good chance that you'll get at least part the way there using a …
5
votes

How can I port a legacy Java/J2EE website to a modern scripting language (PHP,Python/Django, etc)?

Using an automated tool to "port" the web application will almost certainly guarantee that future programming efficiency will be minimised -- not improved. A good scripting language can hel …
4
votes

Why do attribute references act like this with Python inheritance?

Note that part of the behaviour you're seeing is due to somedata being a dict, as opposed to a simple data type such as a boolean. For instance, see this different example, which behaves di …
1
vote

Using Variables for Class Names in Python?

If you have this: class MyClass: def __init__(self): print "MyClass" Then you usually do this: >>> x = MyClass() MyClass …