User orokusaki - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T04:43:24Zhttp://stackoverflow.com/feeds/user/128463http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1923826/django-how-do-i-validate-uniquetogether-from-within-the-model0Django: How do I validate unique_together from within the modelorokusaki2009-12-17T18:56:18Z2009-12-17T20:18:31Z
<p>I have the following:</p>
<pre><code>class AccountAdmin(models.Model):
account = models.ForeignKey(Account)
is_master = models.BooleanField()
name = models.CharField(max_length=255)
email = models.EmailField()
class Meta:
unique_together = (('Account', 'is_master'), ('Account', 'username'),)
</code></pre>
<p>If I then create a new AccoutnAdmin with the same username as another on the same account, instead of it giving me an error to display in the template, it breaks with an IntegrityError and the page dies. I wish that in my view, I could just go:</p>
<pre><code>if new_accountadmin_form.is_valid():
new_accountadmin_form.save()
</code></pre>
<p>How do I conquer this problem. Is there a second is_valid() type of method that checks the DB for violation of the "unique_together = (('Account', 'is_master'), ('Account', 'username'),)" part?</p>
<p>I would like not to have to catch an IntegrityError in my view. That's domain logic mixed with presentation logic. It violates DRY because if I display the same form on 2 pages, I'll have to repeat the same block. It also violates DRY because if I have two forms for the same thing, I have to write the same except: again.</p>
http://stackoverflow.com/questions/1923551/how-should-i-build-this-django-model-to-do-what-i-want0How should I build this Django model to do what I wantorokusaki2009-12-17T18:05:29Z2009-12-17T18:32:43Z
<p>This is what I had before (but realized that you can't obviously do it in this order:</p>
<pre><code>class MasterAdmin(models.Model):
"""
A permanent admin (one per Account) that shouldn't be deleted.
"""
admin = models.OneToOneField(AccountAdmin)
class Account(models.Model):
"""
A top-level account in the system.
"""
masteradmin = models.OneToOneField(MasterAdmin)
class AccountAdmin(models.Model):
"""
An Account admin that can be deleted. This includes limited permissions.
"""
account = models.ForeignKey(Account)
</code></pre>
<p>I think you can see what I want to do from the example. I want to have an MasterAccountAdmin which shares the attributes from AccountAdmin. The purpose is that I want to give people the ability to delete an AccountAdmin, but not MasterAccountAdmin. I didn't want to just have an attribute on AccountAdmin called "master = models.BooleanField()".</p>
<p>Obviously this example won't work because MasterAdmin is referencing AccountAdmin before its creation, but I wanted to show what I'm trying to achieve. Am I thinking of this all wrong?</p>
http://stackoverflow.com/questions/1921973/is-there-a-better-way-to-debug-noreversematch-in-django-templates/1923567#19235670Answer by orokusaki for Is there a better way to debug NoReverseMatch in Django templatesorokusaki2009-12-17T18:08:57Z2009-12-17T18:08:57Z<p>You would have to write out your own implementation of the error reporting to achieve this. Template errors are traced to the point of rendering the template. This isn't super helpful but from my experience it's all there is.</p>
http://stackoverflow.com/questions/90032/reasons-not-to-use-django/1352867#1352867-1Answer by orokusaki for Reasons not to use djangoorokusaki2009-08-30T02:09:12Z2009-11-25T17:11:17Z<p>One negative about Django (not a reason to not use it) is that you cannot use hard-core regex in your URL patterns, such as negative look behinds or it'll mess up the template tags like url.</p>
<p>Whoever voted my answer down isn't a real programmer. That really is a very bad negative about Django. It adds cruft to your URLs. For instance, I can't look for a ".html" at the end of a URL and then, if it exists, see what the characters preceding it to the last slash were.</p>
<p>Example: <a href="http://www.somewebpagewithdjango.com/somepath/someotherpath/itemid.html" rel="nofollow">http://www.somewebpagewithdjango.com/somepath/someotherpath/itemid.html</a> Instead, I need to do something like this with my URL:</p>
<p><a href="http://www.somewebpagewithdjango.com/somepath/someotherpath/" rel="nofollow">http://www.somewebpagewithdjango.com/somepath/someotherpath/</a><strong>:itemid</strong>.html</p>
<p>or</p>
<p><a href="http://www.somewebpagewithdjango.com/somepath/someotherpath/" rel="nofollow">http://www.somewebpagewithdjango.com/somepath/someotherpath/</a><strong>~itemid</strong>.html</p>
<p>Notice the tilda, and the colon.</p>
http://stackoverflow.com/questions/1797046/correct-place-to-put-extra-startup-code-in-django/1798385#1798385-1Answer by orokusaki for Correct place to put extra startup code in django?orokusaki2009-11-25T17:01:09Z2009-11-25T17:01:09Z<p>The best place to put this is into a <strong>Middleware class</strong>. Just use the Middleware to check things out before your page loads and raise an error if the check fails.</p>
http://stackoverflow.com/questions/1485569/resize-image-twice-in-django-using-pil0Resize image twice in Django using PILorokusaki2009-09-28T05:39:33Z2009-11-23T06:11:41Z
<p>I have a function in which I'm trying to resize a photo twice from request.FILES['image']. I'm using the image.thumbnail() with the Parser as well. This works fine when I create one thumbnail, but in my view if I repeat the exact same thing again, it fails in the parser via IOError cannot parse image. I'm very confused. I've created StringIO files in memory instead of using Django's UploadedFile object as-is and it still does the same thing. Any help is much appreciated.</p>
<p>Suppose I wanted to do the following twice (with two different thumbnailing sizes) all without retrieving the URL twice:</p>
<pre><code>import urllib2
from PIL import Image, ImageFile, ImageEnhance
# create Image instance
file = urllib2.urlopen(r'http://animals.nationalgeographic.com/staticfiles/NGS/Shared/StaticFiles/animals/images/primary/kemps-ridley-sea-turtle.jpg')
parser = ImageFile.Parser()
while True:
s = file.read(1024)
if not s:
break
parser.feed(s)
image = parser.close()
# make thumbnail
size = (75, 75)
image.thumbnail(size, Image.ANTIALIAS)
background = Image.new('RGBA', size, (255, 255, 255, 0))
background.paste(
image,
((size[0] - image.size[0]) / 2, (size[1] - image.size[1]) / 2))
background.save('copy.jpg')
</code></pre>
<p>For instance:</p>
<pre><code>image = parser.close()
image2 = parser.close() # Obviously this doens't work
image2 = image # Obviously this doesn't either but you get what I need to do here
# Do 2 thumbnails with only one original source.
</code></pre>
<p>... other code ommitted ...</p>
<pre><code>image.save('copy.jpg')
image2.save('copy.jpg')
</code></pre>
http://stackoverflow.com/questions/1534986/how-do-i-override-delete-on-a-model-and-have-it-still-work-with-related-deletes/1539182#15391821Answer by orokusaki for How do I override delete() on a model and have it still work with related deletesorokusaki2009-10-08T17:05:11Z2009-10-08T17:05:11Z<p>I figured it out. I just put this on that Widget model:</p>
<pre><code>def delete(self):
files = WidgetFile.objects.filter(widget=self)
if len(files):
for file in files:
file.delete()
super(Widget, self).delete()
</code></pre>
<p>This triggered the necessary delete() method on each of the related objects, thus triggering my custom file deleting code. It's more database expensive yes, but when you're trying to delete files on a hard drive anyway, it's not such a big expense to hit the db a few extra times.</p>
http://stackoverflow.com/questions/1534986/how-do-i-override-delete-on-a-model-and-have-it-still-work-with-related-deletes0How do I override delete() on a model and have it still work with related deletesorokusaki2009-10-08T00:31:38Z2009-10-08T17:05:11Z
<pre><code>class Widget(models.Model):
title = models.CharField(max_length=255)
class WidgetFile(models.Model):
widget = models.ForeignKey(Widget)
def delete():
# do some custom hard drive file vodo
super(WidgetFile, self).delete()
... some code to create a Widget and a WidgetFile to go with it ...
some_widget_instance.delete()
</code></pre>
<p>This deletes the Widget and it's related WidgetFile without triggering my special delete method above. Why? and what is the best way to circumvent this.</p>
http://stackoverflow.com/questions/1529550/a-way-to-use-method-parameters-in-django-templates0A way to use method parameters in django templates?orokusaki2009-10-07T04:58:39Z2009-10-07T05:15:31Z
<p>I know there is a post here: <a href="http://stackoverflow.com/questions/1333189/django-template-system-calling-a-function-inside-a-model">http://stackoverflow.com/questions/1333189/django-template-system-calling-a-function-inside-a-model</a> describing how you can make a custom template filter to achieve this, but from a programmer's standpoint this is a failure because that's hacking something that isn't meant for that. It seems almost ridiculous that you can't call a method with parameters in Django's template system. Any help is much appreciated.</p>
<p>Thanks,
Orokusaki</p>
http://stackoverflow.com/questions/1099305/why-is-ruby-more-suitable-for-rails-than-python/1529597#15295970Answer by orokusaki for Why is Ruby more suitable for Rails than Python?orokusaki2009-10-07T05:11:24Z2009-10-07T05:11:24Z<p>The only thing different about Rails and Django, besides the clear advantage of a clean Python syntax vs all the ::=>@ stuff included free with ruby, not to mention the extra end end end end end, is that Rails has a larger community. This isn't because they did more marketing however, it's because they're older. Not only have they had longer to build community, but they've also captured the hearts of lots of developer before Django came through the clouds from heaven. There is only a limited market share of developers to build a community, and Django needed to take some from Rails in order to even have a sizable community.</p>
http://stackoverflow.com/questions/1499543/good-opensource-django-project-for-learning/1499562#14995622Answer by orokusaki for Good opensource django project for learning...orokusaki2009-09-30T17:29:49Z2009-09-30T17:29:49Z<p>This is a great list of projects. If you scroll down, you'll see a lot of open source projects. You can download them and view the models/views, etc: <a href="http://code.djangoproject.com/wiki/DjangoResources" rel="nofollow">http://code.djangoproject.com/wiki/DjangoResources</a></p>
<p>A lot of them are hosted on Google code. Just click the "source" link tab in Google code and copy the SVN Trunk url into your browser to view the code online.</p>
<p>A good one to look at is <a href="http://www.django-cms.org/" rel="nofollow">http://www.django-cms.org/</a> for a large scale project.</p>
http://stackoverflow.com/questions/1489482/has-anyone-ever-given-a-developer-interview-online/1489530#14895300Answer by orokusaki for Has anyone ever given a developer interview online?orokusaki2009-09-28T21:43:42Z2009-09-28T21:43:42Z<p>I haven't done one myself, but I'd be open to it myself, and think it's a good idea. I know how it is when you're looking for someone with a really quick and very analytical mind, and it's tough to determine that remotely.</p>
http://stackoverflow.com/questions/1485922/django-template-dir-switching/1488262#14882622Answer by orokusaki for Django template dir switchingorokusaki2009-09-28T17:18:32Z2009-09-28T17:18:32Z<p>Hey SleepyJames,</p>
<p>You can set multiple template directories in your settings file and Django will search them in the order that you list them. Problem is that it doesn't care if you want template_x.html from directory a or b. If you have the same template_x in directory a and in b, it'll pull from which ever is listed first which can be confusing. A good way would be as follows:</p>
<p>Have only 1 template directory somewhere called 'templates'. Inside of this folder have a folder called 'mobile' and a template called 'default' (or whatever). Then when you call your template you just have to use the directory path as well.</p>
<p>In your view:</p>
<pre><code># some mobile view (everything omitted brevity)
get_template('mobile/some_template.html')
# some normal view (everything omitted brevity)
get_template('default/some_template.html')
</code></pre>
<p>In your templates:</p>
<p>Mobile Template:</p>
<pre><code>{% extends 'mobile/base.html' %}
</code></pre>
<p>Normal Template:</p>
<pre><code>{% extends 'default/base.html' %}
</code></pre>
<p>Settings File:</p>
<pre><code>TEMPLATE_DIRS = (
'D:/some/path/to/templates',
)
</code></pre>
http://stackoverflow.com/questions/1482600/grab-an-image-via-the-web-and-save-it-with-python0Grab an image via the web and save it with Pythonorokusaki2009-09-27T02:00:00Z2009-09-27T17:30:21Z
<p>I want to be able to download an image (to my computer or to a web server) resize it, and upload it to S3. The piece concerned here is:</p>
<p>What would be a recommended way to do the downloading portion within Python (i.e., don't want to use external tools, bash, etc). I want it to be stored into memory until it's done with (versus downloading the image to a local drive, and then working with it). Any help is much appreciated.</p>
http://stackoverflow.com/questions/1343154/how-do-i-decipher-a-dynamic-url-magic-in-django0How do I decipher a dynamic URL magic in Djangoorokusaki2009-08-27T19:00:14Z2009-09-18T02:00:03Z
<pre><code>url(r'^([a-zA-Z0-9/_-]+):p:(?P<sku>[a-zA-Z0-9_-]+)/$', 'product_display', name='product_display'),
url(r'^(?P<path>[a-zA-Z0-9/_-]+)$', 'collection_display', name='collection_display'),
</code></pre>
<p>That's my current regex:</p>
<p>My problem is this: I want to be able to match the product_display's regex without using :p: in the regex. I can do this by putting .html at the end to set it apart from the collection_display's regex, but that doesn't fix the problem that is; without the ":p:" in the regex as is above the URI "some-collection/other/other/sku.html" would match the regex all the way up to the ".html" disregarding the sku. How can I do this without using the ":p:" to end the collection regex. Anything will help.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1352073/how-do-i-form-a-url-in-django-for-what-im-doing0How do I form a URL in Django for what I'm doingorokusaki2009-08-29T18:34:55Z2009-08-31T17:02:22Z
<p>Desperate, please help. Will work for food :)</p>
<p>I want to be able to have pages at the following URLs, and I want to be able to look them up by their URL (ie, If somebody goes to a certain URL, I want to be able to check for a page there).</p>
<pre>
mysite.com/somepage/somesubpage/somesubsubpage/
mysite.com/somepage/somesubpage/anothersubpage/
mysite.com/somepage/somesubpage/somesubpage/
mysite.com/somepage/somepage/
</pre>
<p>Notice I want to be able to reuse each page's slug (ie, somepage/somepage). Of course each slug will be unique for it's level (ie, cannot have two pages with mysite.com/somepage/other/ and mysite.com/somepage/other/ because they would in essence be the same page). What is a good way to do this. I've tried to store the slug for a page ('somesubpage') in a field called 'slug', and make each slug unique for it's parent page so that the above circumstance can't happen. The problem with this is that if I try to look up a page by it's slug (ie, 'somepage'), and there happens to be a page at mysite.com/other/somepage/ and mysite.com/page/somepage/, how would my application know which one to get (they both have the same slug 'somepage').</p>
http://stackoverflow.com/questions/1081340/how-do-you-do-something-after-you-render-the-view-django/1081708#1081708-1Answer by orokusaki for How do you do something after you render the view? (Django)orokusaki2009-07-04T07:05:25Z2009-07-04T07:05:25Z<p>One thing you could do is use middleware to do this.</p>
http://stackoverflow.com/questions/1077227/how-do-i-store-multiple-values-in-a-single-attribute1How do I store multiple values in a single attributeorokusaki2009-07-02T23:38:14Z2009-07-04T02:40:18Z
<p>I don't know if I'm thinking of this the right way, and perhaps somebody will set me straight.</p>
<p>Let's say I have a models.py that contains this:</p>
<pre><code>class Order(models.Model):
customer = models.foreignKey(Customer)
total = models.charField(max_length=10)
has_shipped = models.booleanField()
class Product(models.Model):
sku = models.charField(max_length=30)
price = models.charField(max_length=10)
</code></pre>
<p>Now, obviously an order would contain products and not just a product. What would be the best way to add products to an order? The only way I can think is to add another field to 'Order' called 'products', and fill it with a CSV with a sku for each product in it. This, for obvious reasons is not ideal, but I'm not very good at this stuff yet and have no idea of what the better way is.</p>
<p>(keep in mind this is pseudo code, so don't mind misspellings, etc.)</p>
http://stackoverflow.com/questions/1040887/django-how-do-you-access-the-current-model-instance-from-inside-a-form0DJANGO - How do you access the current model instance from inside a form.orokusaki2009-06-24T20:46:37Z2009-06-25T06:29:53Z
<pre><code>class EditAdminForm(forms.ModelForm):
password = username.CharField(widget=forms.TextInput())
password = forms.CharField(widget=forms.PasswordInput())
password_confirm = forms.CharField(widget=forms.PasswordInput(), initial=???)
</code></pre>
<p>You can see what I'm trying to do here. How would I go about pre-populating the pasword_confirm field (which is not part of the model). I'm so confused.</p>
http://stackoverflow.com/questions/1040338/what-are-the-worst-software-project-failures-ever/1040846#10408460Answer by orokusaki for What are the Worst Software Project Failures Ever?orokusaki2009-06-24T20:37:22Z2009-06-24T20:54:16Z<p>There is a company in Boise, whose name I will not mention. Their purpose was to build a shopping engine that would be used for female shoppers to enjoy a virtual-mall-like shopping experience. Instead, the project had 68 high-end developers (enough to build an operating system), and millions of dollars hemorrhaging each year, and the withered away over 2 years time.</p>
http://stackoverflow.com/questions/1923826/django-how-do-i-validate-uniquetogether-from-within-the-model/1924035#1924035Comment by orokusaki on Django: How do I validate unique_together from within the modelorokusaki2009-12-17T19:44:52Z2009-12-17T19:44:52ZHow can I do that in the clean method and attach it to the normal clean method. I know about super(MyForm, self).clean() but how can I attach them together so that all validations happen at the same time, so that I could display this on the page:
- "Sorry your email is not valid"
- "Sorry your username already exists for this account"
,etc.http://stackoverflow.com/questions/1923826/django-how-do-i-validate-uniquetogether-from-within-the-model/1924041#1924041Comment by orokusaki on Django: How do I validate unique_together from within the modelorokusaki2009-12-17T19:40:47Z2009-12-17T19:40:47Z1) One problem with that is that I have to import IntegrityError from the correct database, which makes for more configuration.
2) The other problem with that is that I don't want validation logic in my views.
3) (rhetoric, aimed towards Django itself) What's the point of putting unique_together constraints on something if there's no logical way of handling it during validation.http://stackoverflow.com/questions/1534986/how-do-i-override-delete-on-a-model-and-have-it-still-work-with-related-deletesComment by orokusaki on How do I override delete() on a model and have it still work with related deletesorokusaki2009-12-17T19:03:03Z2009-12-17T19:03:03ZThis problem arose because when a widget is deleted it doesn't trigger the delete() method on each of it's dependents (classes that have a foreign key reference to it). It simply deletes the related objects from the DB. This makes it more efficient but obviously leads to problems like this.http://stackoverflow.com/questions/1923551/how-should-i-build-this-django-model-to-do-what-i-want/1923651#1923651Comment by orokusaki on How should I build this Django model to do what I wantorokusaki2009-12-17T18:28:40Z2009-12-17T18:28:40ZThanks! BTW, is this very Pythonic to do (this in quotes thing)?http://stackoverflow.com/questions/90032/reasons-not-to-use-django/1352867#1352867Comment by orokusaki on Reasons not to use djangoorokusaki2009-12-17T17:51:40Z2009-12-17T17:51:40ZThat won't do the trick. It breaks DRY. If I want an application that can have unlimited slugs separated by paths (assuming they don't break the maximum HTTP URI length specification), I'd have to repeat the process 10 times. Then my algorithm on the back end would have to piece the slugs back together with '/'.join(foo_slugs). This is a terrible thing to have to do. A look-behind is truly the answer to this.http://stackoverflow.com/questions/1343154/how-do-i-decipher-a-dynamic-url-magic-in-django/1343249#1343249Comment by orokusaki on How do I decipher a dynamic URL magic in Djangoorokusaki2009-12-15T06:57:34Z2009-12-15T06:57:34ZAbsolutely not. He's recommending the use of a slash as my delimiter. I cannot pass in the full path (including the slashes), up to the last slash, and use the slashes as my delimiter at the same time. Negative look-behind is the only way to achieve this, and the lack of support in frameworks is why so many web apps use colons and tildas in their urls.http://stackoverflow.com/questions/1485569/resize-image-twice-in-django-using-pil/1781378#1781378Comment by orokusaki on Resize image twice in Django using PILorokusaki2009-11-25T16:25:39Z2009-11-25T16:25:39ZOh, nice! That will save a lot of memory too right?http://stackoverflow.com/questions/1534986/how-do-i-override-delete-on-a-model-and-have-it-still-work-with-related-deletes/1535032#1535032Comment by orokusaki on How do I override delete() on a model and have it still work with related deletesorokusaki2009-10-08T17:07:51Z2009-10-08T17:07:51Ztrue indeed, but Django does a database level mass delete on all waiters without triggering each of their delete methods, which is less expensive, but also less conventional.http://stackoverflow.com/questions/1529550/a-way-to-use-method-parameters-in-django-templates/1529610#1529610Comment by orokusaki on A way to use method parameters in django templates?orokusaki2009-10-07T05:19:14Z2009-10-07T05:19:14ZThanks for your answer. I strongly disagree with their philosophy, but I don't have time to build a full stack framework, so I'll live with it. The guys over at Django HQ should take a look at the Velocity project if they want to see what is the best template system in the world. That's not subjective. It's a fact. I'll have to pickup Cheetah and attach that instead.http://stackoverflow.com/questions/1099305/why-is-ruby-more-suitable-for-rails-than-python/1529597#1529597Comment by orokusaki on Why is Ruby more suitable for Rails than Python?orokusaki2009-10-07T05:14:39Z2009-10-07T05:14:39ZDon't forget these two important points:
<a href="http://www.google.com/trends?q=django%2C+ruby+on+rails&ctab=0&geo=all" rel="nofollow">google.com/trends?q=django%2C+ruby+on+rails&c…</a>
<a href="http://www.google.com/trends?q=python%2C+ruby" rel="nofollow">google.com/trends?q=python%2C+ruby</a>http://stackoverflow.com/questions/1040338/what-are-the-worst-software-project-failures-ever/1040846#1040846Comment by orokusaki on What are the Worst Software Project Failures Ever?orokusaki2009-09-28T15:13:40Z2009-09-28T15:13:40ZThey wanted the shop to be a mall of other people's shops (some sort of large-scale affiliate system), with a personalized feel (based on some ridiculous profiling algorithms.http://stackoverflow.com/questions/1485569/resize-image-twice-in-django-using-pil/1485913#1485913Comment by orokusaki on Resize image twice in Django using PILorokusaki2009-09-28T15:08:42Z2009-09-28T15:08:42ZThanks, image.copy() was exactly what I needed. I'm too ridiculous to scroll down and notice that method in the docs, so I was trying to clone the UploadedFile object myself and reuse it :)http://stackoverflow.com/questions/1352073/how-do-i-form-a-url-in-django-for-what-im-doing/1352086#1352086Comment by orokusaki on How do I form a URL in Django for what I'm doingorokusaki2009-08-29T20:27:44Z2009-08-29T20:27:44ZSo this is as tricky as I thought then. Thanks Daniel.http://stackoverflow.com/questions/1352073/how-do-i-form-a-url-in-django-for-what-im-doing/1352174#1352174Comment by orokusaki on How do I form a URL in Django for what I'm doingorokusaki2009-08-29T20:26:39Z2009-08-29T20:26:39ZI need similar CMS functionality in my URLs but I'm not building a CMS. Thanks for the list though http://stackoverflow.com/questions/1343154/how-do-i-decipher-a-dynamic-url-magic-in-django/1343249#1343249Comment by orokusaki on How do I decipher a dynamic URL magic in Djangoorokusaki2009-08-29T17:41:43Z2009-08-29T17:41:43ZThe only problem with that is that I'm using this as my current <sku> regex:
url(r'^([a-zA-Z0-9/_-]+)/(?P<sku>[a-zA-Z0-9_-]+)\.html$', 'product_display', name='product_display'),
I have the ([a-zA-Z0-9/_-]+)/ at the beginning because the url could be anything at all as long as it has the somesku.html at the end and I want to be able to pull the sku out (from the dot back to the last slash). This because I want the following to be possible:
<a href="http://mysite.com/collection/sub-collection/" rel="nofollow">mysite.com/collection/sub-collection</a>
(matches a collection)
<a href="http://mysite.com/collection/sub-collection/sku.html" rel="nofollow">mysite.com/collection/sub-collection/…</a>
(matches a sku)