active questions tagged django+python - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T11:22:48Zhttp://stackoverflow.com/feeds/tag/django+pythonhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1865981/how-do-i-mimic-browser-back-arrow-in-my-application-page1How do I mimic browser back arrow in my application page ?Sharma Anil2009-12-08T10:08:34Z2009-12-08T10:16:16Z
<p>request.path gives me the clicked url.
I need a return link on that page which on clicking, should return to Referrer page,
just as it would happen in case of browser back arrow . I do not maintain any session and
do not want to hardcode the referrer page url. </p>
http://stackoverflow.com/questions/1864081/wmd-preview-doesnt-match-output0WMD Preview Doesn't Match OutputChris2009-12-08T01:43:27Z2009-12-08T09:13:11Z
<p>I am using WMD in a google app situation whereby the site administrator can update the pages of the site and the users see the information. </p>
<p>The preview function is working fine and I can see the text the way I want it to appear, but when I am in the users section, the markdown is being returned without the formatting - how can i fix this?</p>
<p>This is the code i am using</p>
<pre><code>{% block content-left %}
{% if is_admin %}
<div id="content-bodyleft" class="wmd-preview"></div>
<form action="/admin/content/" method="post">
<textarea id="markdown" name="markdown" style="width: 400px; height: 200px;" >{{ page_content.html }}</textarea>
<input name="page" type="hidden" value="{{ request.path }}" />
<input type="submit" name="Save" />
</form>
<div class="wmd-output"></div>
<script type="text/javascript">
// to set WMD's options programatically, define a "wmd_options"
// object with whatever settings
// you want to override. Here are the defaults:
wmd_options = {
// format sent to the server. Use "Markdown" to return the markdown source.
output: "Markdown",
// line wrapping length for lists, blockquotes, etc.
lineLength: 40,
// toolbar buttons. Undo and redo get appended automatically.
buttons: "bold italic | link blockquote code image | ol ul heading hr",
// option to automatically add WMD to the first textarea found.
// See apiExample.html for usage.
autostart: true
};
</script>
<div class="wmd-output"></div>
<script type="text/javascript" src="/static/wmd/wmd.js"></script>
{% else %}
{{ page_content.html|markdown }}
{% endif %}
</code></pre>
http://stackoverflow.com/questions/1865479/display-from-a-table-using-django0Display from a table using DjangoHulk2009-12-08T08:21:31Z2009-12-08T08:31:57Z
<p>Hi all,</p>
<p>Can you please give me a small piece of code where we display data from a table if any in Django.....</p>
<p>Please point me to a code that goes into views.py and template/index.html to diaply the table.............</p>
<p>Thanks....</p>
http://stackoverflow.com/questions/1854821/google-app-engine-application-extremely-slow3Google App Engine Application Extremely slowDondon Vizcayno2009-12-06T08:58:43Z2009-12-08T03:23:49Z
<p>I created a Hello World website in Google App Engine. It is using Django 1.1 without any patch.</p>
<p>Even though it is just a very simple web page, it takes long time and often it times out.</p>
<p>Any suggestions to solve this?</p>
<p>Note: It is responding fast after the first call.</p>
http://stackoverflow.com/questions/1863473/problem-with-import-curses-ascii0Problem with import curses.ascii R.2009-12-07T22:49:13Z2009-12-07T23:34:58Z
<p>Hi,
I am trying <code>from curses.ascii import *</code> to django project, but I get: <code>No module named _curses</code>, I am using Python 2.5, any suggestion? Anyway I only need <code>isalpha()</code> function to use....</p>
http://stackoverflow.com/questions/1859866/django-search-capabilities1Django search capabilitiesHulk2009-12-07T13:08:54Z2009-12-07T20:32:39Z
<p>Is there a easy way to add a search capability on fields in django? Also please let me know what is lucene search.</p>
http://stackoverflow.com/questions/1862123/django-1-1-1-how-should-i-store-an-empty-ip-address-using-postgresql1Django 1.1.1: How should I store an empty IP address using PostgreSQL?synack2009-12-07T18:59:15Z2009-12-07T19:19:30Z
<p>I am writing a Django application that stores IP addresses with optional routing information. One of the fields for the IP model I have created is <code>nexthop</code> (for next-hop routes), which will usually be empty. Originally we intended to use MySQL, but now project requirements have changed to use PostgreSQL.</p>
<p>Here is a stripped down version of my model:</p>
<pre><code>class IP(models.Model):
address = models.IPAddressField()
netmask = models.IPAddressField(default='255.255.255.255')
nexthop = models.IPAddressField(null=True, blank=True, default=None)
active = models.BooleanField('is active?', default=1)
</code></pre>
<p>So, with MySQL I did not have a problem leaving the <code>nexthop</code> field empty. However, now that I switched the development environment to Postgres, we've run into a <a href="http://code.djangoproject.com/ticket/5622" rel="nofollow">known issue in Django 1.1.1</a> in which a blank IP address raises a <code>DataError</code></p>
<pre><code>invalid input syntax for type inet: ""
LINE 1: ...-14 13:07:29', 1, E'1.2.3.4', E'255.255.255.255', E'', true)
^
</code></pre>
<p>As you can see, it bombs because it is trying to insert an empty string when the column will only accept a <code>NULL</code>.</p>
<p>I have a very real need to be able to keep this field empty, because if an IP doesn't have a next-hop, then its behavior changes.</p>
<p>Short of hacking the Django code manually, which is my ultimate last resort, I have also thought of defaulting next-hop to 255.255.255.255 and wrapping some business logic around that (i.e. If next-hop is 255.255.255.255, treat as normal route), but that just feels like a hack.</p>
<p>I would like to know if there are any suggestions on a better way to do this that would not require hacking Django or writing hacky logic, or if there is a completely different approach altogether that can satisfy my requirement.</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1861267/writing-my-own-django-cms-plugin-any-recommendations1Writing my own django-cms plugin. Any recommendations?luc2009-12-07T16:52:25Z2009-12-07T16:57:28Z
<p>I don't see any possibility for creating a table in django-cms. I need this functionnality so I am evaluating the possibility to write my own plugin.</p>
<p>I am getting started with this product. I've read the documentation carefully and I see more or less how to do that.</p>
<p>However, I would be happy to hear some tips and tricks before starting this task. Does anybody have experience with django-cms plugin?</p>
<p>Thanks in advance </p>
http://stackoverflow.com/questions/1857427/how-do-i-break-up-the-controllers-views-into-cohesive-files-in-a-django-project0How do I break up the controllers (views) into cohesive files in a Django project?Korbin2009-12-07T02:18:17Z2009-12-07T16:08:33Z
<p>I am currently working through the tutorial on Django's website. Upon completing the following command:</p>
<p>python manage.py startapp polls</p>
<p>it creates the following structure: </p>
<pre><code>polls/
__init__.py
models.py
tests.py
views.py
</code></pre>
<p>As I was going through the tutorial it occurred to me that the views file could grow to this huge incohesive monolithic file that has every action in the entire web application.</p>
<p>Is there a way to break this file up into cohesive classes or files? I tried changing the settings.py and the url.py to point to a different directory, but it appears that the script that generates the file structure creates a "views" module when it creates the file, and I don't see a way to change/override this behavior from the script.</p>
http://stackoverflow.com/questions/1858749/creating-portable-django-apps-help-needed6Creating portable Django apps - help needed.stricjux2009-12-07T09:04:57Z2009-12-07T10:07:08Z
<p>I'm building a Django app, which I comfortably run (test :)) on a Ubuntu Linux host. I would like to package the app without source code and distribute it to another production machine. Ideally the app could be run by ./runapp command which starts a CherryPy server that runs the python/django code.</p>
<p>I've discovered several ways of doing this:</p>
<ol>
<li>Distributing the .pyc files only and building and installing all the requirements on target machine.</li>
<li>Using one of the many tools to package Python apps into a distributable package.</li>
</ol>
<p>I'm really gunning for nr.2 option, I'd like to have my Django app contained, so it's possible to distribute it without needing to install or configure additional things. Searching the interwebs provided me with more questions than answers and a very sour taste that Django packing is an arcane art that everybody knows but nobody speaks about. :)</p>
<p>I've tried Freeze (fails), <a href="http://cx-freeze.sourceforge.net/" rel="nofollow">Cx_freeze</a> (easy install version fails, repository version works, but the app output fails) and red up on dbuilder.py (which is supposed to work but doesn't work really - I guess). If I understand correctly most problems originate form the way that Django imports modules (example) but I have no idea how to solve it.</p>
<p>I'll be more than happy if anyone can provide any pointers or good resources online regarding packing/distributing standalone Django applications.</p>
http://stackoverflow.com/questions/1271631/how-to-check-the-templatedebug-flag-in-a-django-template1How to check the TEMPLATE_DEBUG flag in a django template?luc2009-08-13T12:25:06Z2009-12-07T05:49:37Z
<p>Do you know if it is possible to know in a django template if the TEMPLATE_DEBUG flag is set?</p>
<p>I would like to disable my google analytics script when I am running my django app on my development machine. Something like a {% if debug %} template tag would be perfect. Unfortunately, I didn't find something like that in the documentation.</p>
<p>For sure, I can add this flag to the context but I would like to know if there is a better way to do that.</p>
http://stackoverflow.com/questions/1857527/django-populating-a-database-for-test-purposes1Django - Populating a database for test purposes.cornjuliox2009-12-07T02:48:13Z2009-12-07T05:29:22Z
<p>I need to populate my database with a bunch of dummy entries (around 200+) so that I can test the admin interface I've made and I was wondering if there was a better way to do it. I spent the better part of my day yesterday trying to fill it in by hand (i.e by wrapping stuff like this my_model(title="asdfasdf", field2="laksdj"...) in a bunch of "for x in range(0,200):" loops) and gave up because it didn't work the way I expected it to. I think <a href="http://docs.djangoproject.com/en/dev/topics/serialization/#topics-serialization" rel="nofollow" title="this">this</a> is what I need to use, but don't you need to have (existing) data in the database for this to work?</p>
http://stackoverflow.com/questions/1851197/django-delete-all-but-last-five-of-queryset2Django Delete all but last five of querysetBrandon H2009-12-05T05:17:29Z2009-12-07T03:34:20Z
<p>I have a super simple django model here:</p>
<pre><code>class Notification(models.Model):
message = models.TextField()
user = models.ForeignKey(User)
timestamp = models.DateTimeField(default=datetime.datetime.now)
</code></pre>
<p>Using ajax, I check for new messages every minute. I only show the five most recent notifications to the user at any time. What I'm trying to avoid, is the following scenario.</p>
<p>User logs in and has no notifications. While the user's window is up, he receives 10 new messages. Since I'm only showing him five, no big deal. The problem happens when the user starts to delete his notifications. If he deletes the five that are displayed, the five older ones will be displayed on the next ajax call or refresh.</p>
<p>I'd like to have my model's save method delete everything but the 5 most recent objects whenever a new one is saved. Unfortunately, you can't use [5:] to do this. Help?</p>
<p><strong>EDIT</strong></p>
<p>I tried this which didn't work as expected (in the model's save method):</p>
<pre><code> notes = Notification.objects.filter(user=self.user)[:4]
Notification.objects.exclude(pk__in=notes).delete()
</code></pre>
<p>i couldn't find a pattern in strange behavior, but after a while of testing, it would only delete the most recent one when a new one was created. i have NO idea why this would be. the ordering is taken care of in the model's Meta class (by timestamp descending). thanks for the help, but my way seems to be the only one that works consistently.</p>
http://stackoverflow.com/questions/1738466/how-do-i-import-the-rendertoresponse-method-from-django-1-1-inside-of-google-ap1How do I import the render_to_response method from Django 1.1 inside of Google App Engine?Bialecki2009-11-15T19:04:37Z2009-12-07T03:07:03Z
<p>I'm a Python newbie, so I'm sure this is easy. Here's the code in my main.py:</p>
<pre><code>import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
from google.appengine.dist import use_library
use_library('django', '1.1')
# Use django form library.
from django import forms
from django.shortcuts import render_to_response
</code></pre>
<p>The last line breaks with an ImportError. If I don't include that, then I get an error that "render_to_response" isn't available. What am I doing wrong?</p>
http://stackoverflow.com/questions/1022914/deploying-django2Deploying DjangoRobyn Smith2009-06-21T01:00:04Z2009-12-07T02:11:32Z
<p>When finding web hosting for Rails apps, the hoster must have support for ruby on rails -- that is evident. What about hosting for Django? What support does the hoster need to provide? Python, or more than just Python?</p>
<p>This might seem like an obvious question, but I'm new to web development frameworks so I must ask :)</p>
http://stackoverflow.com/questions/276345/syntax-error-whenever-i-put-python-code-inside-a-django-template1Syntax error whenever I put Python code inside a Django templaterksprst2008-11-09T19:24:41Z2009-12-06T23:02:57Z
<p>I'm trying to do the following in my Django template:</p>
<pre><code> {% for embed in embeds %}
{% embed2 = embed.replace("&lt;", "<") %}
{{embed2}}<br />
{% endfor %}
</code></pre>
<p>However, I always get an invalid block or some syntax error when I do anything like that (by that I mean {% %} code inside a loop). Python doesn't have {} to signify "scope" so I think this might be my problem? Am I formatting my code wrong?</p>
<p>Edit: the exact error is: <code>Invalid block tag: 'embed2'</code></p>
<p>Edit2: Since someone said what I'm doing is not supported by Django templates, I rewrote the code, putting the logic in the view. I now have:</p>
<pre><code>embed_list = []
for embed in embeds:
embed_list[len(embed_list):] = [embed.replace("&lt;", "<")] #this is line 35
return render_to_response("scanvideos.html", {
"embed_list" :embed_list
})
</code></pre>
<p>However, I now get an error: <code>'NoneType' object is not callable" on line 35</code>.</p>
http://stackoverflow.com/questions/1856439/defining-pythonpath-for-http-requests-on-a-shared-server0Defining PYTHONPATH for http requests on a shared serverAdam2009-12-06T20:03:52Z2009-12-06T20:08:14Z
<p>I'm installing Django on Bluehost and one of the steps to install it was to install flup on their server. I did so and everything works great when I'm logged in via the SSH. However when I actually hit the page in my browser it can't find flup. I get this error in the server log:</p>
<blockquote>
<p>ERROR: No module named flup. Unable to load the flup package. In order to run django as a FastCGI application, you will need to get flup from <a href="http://www.saddi.com/software/flup/" rel="nofollow">http://www.saddi.com/software/flup/</a> If you've already installed flup, then make sure you have it in your PYTHONPATH. </p>
</blockquote>
<p>Since it recognizes flup when I'm in the SSH my best guess is that there's some other bash file I need to change to get PYTHONPATH pointing to the right places for the http request. But since it's a shared server I don't have a whole lot of privileges outside of my home directory. </p>
<p>Any ideas? </p>
http://stackoverflow.com/questions/1855219/django-pythoneggcache-access-denied-error1Django: PYTHON_EGG_CACHE, access denied errorOleg Tarasenko2009-12-06T12:09:47Z2009-12-06T17:45:07Z
<p>Hi!</p>
<p>I am deploying my django application on a server, and on last stages I am getting this error:</p>
<pre><code>ExtractionError at /admin/
Can't extract file(s) to egg cache
The following error occurred while trying to extract file(s) to the Python egg
cache:
[Errno 13] Permission denied: '/.python-eggs'
The Python egg cache directory is currently set to:
/.python-eggs
Perhaps your account does not have write access to this directory? You can
change the cache directory by setting the PYTHON_EGG_CACHE environment
variable to point to an accessible directory.
Request Method: GET
Request URL: http://go-ban.org/admin/
Exception Type: ExtractionError
Exception Value:
Can't extract file(s) to egg cache
The following error occurred while trying to extract file(s) to the Python egg
cache:
[Errno 13] Permission denied: '/.python-eggs'
The Python egg cache directory is currently set to:
/.python-eggs
Perhaps your account does not have write access to this directory? You can
change the cache directory by setting the PYTHON_EGG_CACHE environment
variable to point to an accessible directory.
Exception Location: /usr/lib/python2.5/site-packages/pkg_resources.py in extraction_error, line 887
Python Executable: /usr/bin/python
Python Version: 2.5.2
Python Path: ['/home/oleg/sites/goban', '/usr/lib/python2.5/site-packages/PIL-1.1.7-py2.5-linux-i686.egg', '/usr/lib/python2.5/site-packages/PyAMF-0.5.1-py2.5-linux-i686.egg', '/usr/lib/python2.5', '/usr/lib/python2.5/plat-linux2', '/usr/lib/python2.5/lib-tk', '/usr/lib/python2.5/lib-dynload', '/usr/local/lib/python2.5/site-packages', '/usr/lib/python2.5/site-packages', '/usr/lib/python2.5/site-packages/PIL', '/var/lib/python-support/python2.5']
Server time: Sun, 6 Dec 2009 14:05:47 +0200
</code></pre>
<p>Maybe someone come across similar issue? </p>
<p>The strangest thing here is that I am using another django site on this host with no such error :( </p>
<h3>Related question</h3>
<ul>
<li><a href="http://stackoverflow.com/questions/268015/apache-user-can-not-write-to-python-eggs">apache user can not write to .python-eggs</a></li>
</ul>
http://stackoverflow.com/questions/1849243/decorators-on-django-template-filters0Decorators on Django Template Filters?Jim Robert2009-12-04T19:47:01Z2009-12-06T17:35:34Z
<p>I have a template filter that performs a very simple task and works well, but I would like to use a decorator on it. Unfortunately the decorator causes a nasty django error that doesn't make any sense...</p>
<p>Code that works:</p>
<pre><code>@register.filter(name="has_network")
def has_network(profile, network):
hasnetworkfunc = getattr(profile, "has_%s" % network)
return hasnetworkfunc()
</code></pre>
<p>With Decorator (doesn't work):</p>
<pre><code>@register.filter(name="has_network")
@cache_function(30)
def has_network(profile, network):
hasnetworkfunc = getattr(profile, "has_%s" % network)
return hasnetworkfunc()
</code></pre>
<p>Here is the error:</p>
<blockquote>
<p>TemplateSyntaxError at /</p>
<p>Caught an exception while rendering:
pop from empty list</p>
</blockquote>
<p>I have tried setting break points inside the decorator and I am reasonably confident that it is not even being called...</p>
<p><del>But just in case here is the decorator (I know someone will ask for it)</del></p>
<p>I replaced the decorator (temporarily) with a mock decorator that does nothing, but I still get the same error</p>
<pre><code>def cache_function(cache_timeout):
def wrapper(fn):
def decorator(*args, **kwargs):
return fn(*args, **kwargs)
return decorator
return wrapper
</code></pre>
<p><strong>edit <em>CONFIRMED</em></strong>: It is caused because the decorator takes <code>*args</code> and <code>**kwargs</code>? I assume <code>pop()</code> is being called to ensure filters all take at least one arg?</p>
<p>changing the decorator to this fixes the problem:</p>
<pre><code>def cache_function(cache_timeout):
def wrapper(fn):
def decorator(arg1, arg2):
return fn(arg1, arg2)
return decorator
return wrapper
</code></pre>
<p>Unfortunately that ruins the generic nature of the decorator :/ what to do now?</p>
http://stackoverflow.com/questions/1855184/dealing-with-urls-in-django0Dealing with URLs in Djangoshawnjan2009-12-06T11:54:54Z2009-12-06T12:32:00Z
<p>Hey all!</p>
<p>So, basically what I'm trying to do is a hockey pool application, and there are a ton of ways I should be able to filter to view the data. For example, filter by free agent, goals, assists, position, etc. </p>
<p>I'm planning on doing this with a bunch of query strings, but I'm not sure what the best approach would be to pass along the these query strings. Lets say I wanted to be on page 2 (as I'm using pagination for splitting the pages), sort by goals, and only show forwards, I would have the following query set:</p>
<pre><code>?page=2&sort=g&position=f
</code></pre>
<p>But if I was on that page, and it was showing me all this corresponding info, if I was to click say, points instead of goals, I would still want all my other filters in tact, so like this:</p>
<pre><code>?page=2&sort=p&position=f
</code></pre>
<p>Since HTTP is stateless, I'm having trouble on what the best approach to this would be.. If anyone has some good ideas they would be much appreciated, thanks ;)</p>
<p>Shawn J</p>
http://stackoverflow.com/questions/1854237/django-edit-form-based-on-add-form0Django edit form based on add form?Mark2009-12-06T03:18:48Z2009-12-06T05:32:31Z
<p>I've made a nice form, and a big complicated 'add' function for handling it. It starts like this...</p>
<pre><code>def add(req):
if req.method == 'POST':
form = ArticleForm(req.POST)
if form.is_valid():
article = form.save(commit=False)
article.author = req.user
# more processing ...
</code></pre>
<p>Now I don't really want to duplicate all that functionality in the <code>edit()</code> method, so I figured <code>edit</code> could use the exact same template, and maybe just add an <code>id</code> field to the form so the <code>add</code> function knew what it was editing. But there's a couple problems with this</p>
<ol>
<li>Where would I set <code>article.id</code> in the <code>add</code> func? It would have to be after <code>form.save</code> because that's where the article gets created, but it would never even reach that, because the form is invalid due to unique constraints (unless the user edited everything). I can just remove the <code>is_valid</code> check, but then <code>form.save</code> fails instead.</li>
<li>If the form actually <em>is</em> invalid, the field I dynamically added in the edit function isn't preserved.</li>
</ol>
<p>So how do I deal with this?</p>
http://stackoverflow.com/questions/631436/hello-world-pyamf-small-error-message0Hello world Pyamf small error messagecoulix2009-03-10T17:27:25Z2009-12-05T20:48:25Z
<p>Hi i am trying to link flex to django with Pyamf</p>
<p>As a first step i tried the basic Hello World
<a href="http://pyamf.org/wiki/DjangoHowto" rel="nofollow">http://pyamf.org/wiki/DjangoHowto</a></p>
<p>But that results in an ErrorFault.</p>
<p>I use django 1.0.2</p>
<p><strong>amfgateway.py</strong> in the root folder of my project (same level as settings)</p>
<pre><code>import pyamf
from pyamf.remoting.gateway.django import DjangoGateway
from django.contrib.auth.models import User
pyamf.register_class(User, 'django.contrib.auth.models.User')
def get_users(requet):
return User.objects.all()
def echo(request, data):
return data
services = {
'myservice.echo': echo,
'myservice.get_users': get_users,
}
edoGateway = DjangoGateway(services, expose_request=False)
</code></pre>
<p><strong>In urls.py</strong></p>
<pre><code>urlpatterns = patterns('',
# test pyamf
url(r'^gateway/', 'amfgateway.edoGateway'),
...
)
</code></pre>
<p>Then when i test the example with pyamf client</p>
<pre><code>from pyamf.remoting.client import RemotingService
gw = RemotingService('http://127.0.0.1:8000/gateway/')
service = gw.getService('myservice')
print service.echo('Hello World!')
</code></pre>
<p><strong>I get</strong> </p>
<p><em>ErrorFault level=error code=500 type=u'AttributeError' description=u"Cannot find a view
for the path ['/gateway/myservice/echo'], 'DjangoGateway' object has no attribute '<strong>nam
e</strong>'"
Traceback:
u"Cannot find a view for the path ['/gateway/myservice/echo'], 'DjangoGateway' object ha
s no attribute '<strong>name</strong>'"</em></p>
http://stackoverflow.com/questions/1852693/django-application-deployment-help1Django application deployment helpGrumpyCanuck2009-12-05T16:45:49Z2009-12-05T18:12:33Z
<p>I'm using Capistrano to deploy a Django application (it uses Nginx as the web server), using instructions I found at <a href="http://akashxav.com/2009/07/11/getting-django-running-on-nginx-and-fastcgi-on-prgmr/" rel="nofollow">http://akashxav.com/2009/07/11/getting-django-running-on-nginx-and-fastcgi-on-prgmr/</a> (I had to look at a cached version earlier today) and was wondering about the last command in there, which is </p>
<pre><code>python manage.py runfcgi host=127.0.0.1 port=8081 --settings=settings
</code></pre>
<p>I understand at a high level that this is telling the application that we want to run a few instances of the FastCGI binary to serve up this application.</p>
<p>What I was wondering is how is the best way to handle "resetting" this, for lack of a better word. For those who don't know, Capistrano deploys things by creating "releases" directories and then providing a symlink to the latest release.</p>
<p>Since I can do post-deployment tasks (I've done this with CakePHP applications to do things like properly set directory permissions for a caching directory in the application) I was wondering how to turn off the existing processes created by the command above and start up new ones.</p>
<p>I hope I am making sense.</p>
http://stackoverflow.com/questions/1852427/why-is-pdb-displaying-blank-or-comment-when-i-try-to-set-a-break1Why is pdb displaying "*** Blank or comment" when I try to set a Break?BryanWheelock2009-12-05T15:05:20Z2009-12-05T15:22:47Z
<p>I'm working with my Django app. For some reason an element of a list is being assigned incorrectly.</p>
<p>I'm trying to set a break where I think the error is occurring. ( line 20 )</p>
<p>I'm invoking pdb with this line of code:<br>
import pdb; pdb.set_trace()</p>
<p>However, inside the code, I can't seem to set a Break.<br>
<code>(Pdb) b 20<br>
*** Blank or comment<br>
(Pdb) break 20<br>
*** Blank or comment </code></p>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/329706/python-cms-for-my-own-website1Python CMS for my own website?Bill Karwin2008-12-01T00:53:21Z2009-12-05T12:43:05Z
<p>I'm an accomplished web and database developer, and I'm interested in redesigning my own website. </p>
<p>I have the following content goals:</p>
<ul>
<li>Support a book I'm writing</li>
<li>Move my blog to my own site (from blogger.com)</li>
<li>Publish my articles (more persistent content than a blog)</li>
<li>Host a forum with light use</li>
<li>Embed slide sharing and screencasts</li>
</ul>
<p>I have the following technology goals for implementing my site:</p>
<ul>
<li>Learn more Python and Django</li>
<li>Leverage a CMS solution such as Pinax or Django-CMS</li>
<li>Utilize a CSS framework, such as Blueprint or YUI</li>
<li>I develop on a Mac OS X platform</li>
<li>I'm comfortable developing in a CLI, but I'd like to practice Eclipse or NetBeans</li>
<li>I'd like to employ testing during development</li>
<li>Please, no Microsoft languages or tools</li>
</ul>
<p>Any suggestions for technology choices that support these goals?</p>
<p><strong>Edit:</strong> Apologies if the question above was too unclear or general. What I'm asking for is if folks have had experience doing a similar modest website, what would be recommendations for tools, frameworks, or techniques outside of those I listed?</p>
<ul>
<li>Is there another Python CMS that I should consider besides the two I listed? E.g. there may be a great Python solution, but it isn't built on top of Django.</li>
<li>Perhaps all current Python CMS packages are too "alpha," and I'd be better off writing my own from scratch? Although I am up to it, I'd rather leverage an existing package.</li>
<li>Given this kind of project, would you deploy a CMS with built-in (or plug-in) support for blogs, forums, etc. or would you rather design a simpler website and embed the more complex content management using other services, relying on your own website only as a dumb proxy or portal. E.g. one can re-publish Blogger.com content using the Google Gdata API. One can embed re-branded Nabble.com archives into any website, which may provide forum/mailinglist functionality more easily than running the forum itself.</li>
<li>Sometimes a CMS package has its own CSS integrated, and using another CSS framework would be redundant or otherwise make no sense. Yes? No?</li>
<li>Are there plugins for Django in Eclipse or Netbeans? I understand there's a pretty nice environment for Rails development in NetBeans, and I've read some people wish longingly for something similar for Django, but I don't know if these wishes have since been realized.</li>
<li>What are some current preferred tools for unit and functional testing a Django application? Are these integrated with Eclipse or Netbeans?</li>
</ul>
http://stackoverflow.com/questions/1850463/adding-an-argument-to-a-decorator1Adding an argument to a decoratornbv42009-12-05T00:03:29Z2009-12-05T12:37:35Z
<p>I have this decorator, used to decorate a django view when I do not want the view to be executed if the <code>share</code> argument is <code>True</code> (handled by middleware)</p>
<pre><code>class no_share(object):
def __init__(self, view):
self.view = view
def __call__(self, request, *args, **kwargs):
"""Don't let them in if it's shared"""
if kwargs.get('shared', True):
from django.http import Http404
raise Http404('not availiable for sharing')
return self.view(request, *args, **kwargs)
</code></pre>
<p>It currently works like this:</p>
<pre><code>@no_share
def prefs(request, [...])
</code></pre>
<p>But I'm wanting to expand the functionality a little bit, so that it will work like this:</p>
<pre><code>@no_share('prefs')
def prefs(request, [...])
</code></pre>
<p>My question is how can I modify this decorator class so that it accepts extra arguments?</p>
http://stackoverflow.com/questions/1836881/django-based-skill-implementation2Django-based skill implementationawithrow2009-12-03T00:28:29Z2009-12-05T06:54:12Z
<p>I'm working on a RPG using django and am considering different options for implementing part of the skill system.</p>
<p>Say I have a base skill class ie, something like:</p>
<pre><code>class Skill (models.Model):
name = models.CharField()
cost = models.PositiveIntegerField()
blah blah blah
</code></pre>
<p>What would be some approaches to implementing specific skills? The first option that comes to mind is:</p>
<p>1) Each skill extends Skill class and
overrides specific functions:</p>
<p>Not sure how this would work in django. Seems like having a db table for each skill would be overkill. Could the child class be abstract while the Skill class have an entry? Doesn't sound right. How about using a proxy class?</p>
<p>What are some other options. I'd like to avoid a scripted approach for a pure django approach. </p>
http://stackoverflow.com/questions/1846833/matching-stored-keywords-phrases-in-text1matching stored keywords/phrases in textbowdengm2009-12-04T13:06:09Z2009-12-04T19:53:11Z
<p>Hi</p>
<p>I have a database table with around 1000 keywords/phrases (one to four words long) - This table changes rarely, so I could extract the data into something more useful (like a regular expression?) - So this is not finding / guessing at keywords based on natural language processing..</p>
<p>I then have a user inputting some text into a form that I'd like to match against my keywords and phrases.</p>
<p>The program would then store a link to each phrase matched next to the text.</p>
<p>So if we ran the algorithm on this question text against a few phrases that are in here, we'd get a result like so:</p>
<pre><code>{"inputting some text" : 1,
"extract the data" : 1,
"a phrase not here" : 0}
</code></pre>
<p>What are my options?</p>
<ol>
<li>Compile a regular expression</li>
<li>Some sort of SQL query</li>
<li>A third way?</li>
</ol>
<p>Bearing in mind that there's a 1000 possible phrases..</p>
<p>I'm running Django / Python with MySQL.</p>
<p>edit: I'm currently doing this:</p>
<pre><code>>>> text_input = "This is something with first phrase in and third phrase"
>>> regex = "first phrase|second phrase|third phrase"
>>> p = re.compile(regex, re.I)
>>> p.findall(text_input)
['first phrase','third phrase']
</code></pre>
http://stackoverflow.com/questions/1846497/django-filename-from-database-with-non-ascii-characters0Django filename from database with non-ascii charactersdjen2009-12-04T11:53:12Z2009-12-04T15:46:53Z
<p>I'm trying to create a file dynamically in Django:</p>
<pre><code>response = HttpResponse(mimetype='text/txt')
response['Content-Disposition'] = 'attachment; filename=%s' % filename # UnicodeEncodeError
response.write('text')
return response
</code></pre>
<p>If I hardcode the filename it works properly, but if I try to create the filename from DB data that contains non-ascii characters (like ó) I get a UnicodeEncodeError exception. How can I use the DB filename without getting an exception?</p>
http://stackoverflow.com/questions/1845293/get-all-table-names-in-a-django-app1Get all table names in a Django appjack2009-12-04T06:54:57Z2009-12-04T14:36:27Z
<p>How to get all table names in a Django app?</p>
<p>I use the following code but it doesn't get the tables created by ManyToManyField</p>
<pre><code>from django.db.models import get_app, get_models
app = get_app(app_name)
for model in get_models(app):
print model._meta.db_table
</code></pre>