1
vote
2answers
19 views
Django: Where to put helper functions?
I have a couple of functions that i wrote that I need to use in my django app. Where would I put the file with them and how would i make them callable whithin my views?
0
votes
2answers
41 views
What is the best way to store database settings with Django?
I'm attempting to write a browser game using Django but I'm getting a bit stuck on how to store the settings for the game. For example, the game is tick based and I want to store the current tick. I …
0
votes
2answers
14 views
How do add multiple fields to a Form when trying to validate data?
What is the best way to have the IP address be included with the Form is_valid. Let me start with some code examples.
urls.py
from django.conf.urls.defaults import *
from testpost.views import …
0
votes
1answer
39 views
Inlines Python/Django technique for objects
I am reading the source code of the Django application blog at git://github.com/nathanborror/django-basic-apps.git.
How do you read the following Django code?
{% tags_for_object object as tag_list …
0
votes
2answers
37 views
How to do this GROUP BY query in Django’s ORM with annotate and aggregate
I don't really have groked how to translate GROUP BY and HAVING to Django's QuerySet.annotate and QuerySet.aggregate. I'm trying to translate this SQL query into ORM speak
SELECT EXTRACT(year FROM …
1
vote
1answer
19 views
facebook app django server connection
I am creating a Facebook app in Python + Django.
I followed all the instructions mentioned on this page: http://wiki.developers.facebook.com/index.php/User%3APyFacebook%5FTutorial
But it ended up …
1
vote
1answer
31 views
Django: Problems with serving static files with non ascii names
Hi,
I've moved my django application from one server to another, and spotted strange bug with media after it:
Traceback (most recent call last):
File "/usr/lib/python2.5/site-
…
-1
votes
1answer
30 views
facebook app in python showing file list
i am making a facebook app in python with django. now i have successfully resolved the callback url to my localhost account. but the app is not displaying on facebook.
when i navigate to …
0
votes
1answer
31 views
ISO public Django apps developed Agile / BDD style with Doctest, Unitests and Selenium
I've found several blog posts where TDD/BDD is explained, but the examples are usually really basic. Usually they are just for Models. I want to see how people are really using BDD in Real Life.
I'd …
0
votes
0answers
53 views
port forwarding for facebook to reach me? [closed]
I am developing a facebook app in my htdocs folder in python.
i am behind an ADSL Modem, then a Wireless Router.
I have a static IP. Now how do i get Facebook to reach me?
In the connect and callback …
2
votes
3answers
50 views
Django template and Python dictionary data structure question
I am trying to present a dictionary from my view.py at the HTML template such as:
test = { 'works': True, 'this fails':False }
and in the template:
This works without a problem:
{{ test.works }}
…
3
votes
3answers
41 views
Django date filter to output “am” or “A.M.”
The Django date template filter takes the format character "a" for "a.m." and "A" for "AM". How do you get lower case without periods or upper case with the periods?
You can use lower and upper …
0
votes
1answer
49 views
How can I sort by the id of a ManyToManyField in Django?
I've got a ManyToManyField in a user object and it's used to map the users that user is following. I'm trying to show a subset list of who they have most recently followed. Is there a trick in …
1
vote
1answer
39 views
Update Facebook Page’s status using pyfacebook
I am attempting to add functionality to my Django app: when a new post is approved, I want to update the corresponding Facebook Page's status with a message and a link to the post automatically. …
0
votes
2answers
43 views
Examples of using Doctests in Django in an Agile / BDD way
I'm interested in learning how to Doctests and Unit tests in a more Agile / BDD way.
I've found a few tutorials that seem reasonable, but they are just thumbnails.
What I would really like to see is …
