インストールや設定がめんどいのでメールサーバーなしでlogwatch
ここ
素晴らしい。
sendemailは野良ビルドしなくても
sudo apt-get install sendemail libio-socket-ssl-perl libnet-ssleay-perl
でOK
2012年4月20日金曜日
2012年4月9日月曜日
2012年4月7日土曜日
UbuntuのfirefoxでJAVA pligin有効化
2012年4月6日金曜日
generic viewでerror
あんまりアホなことすると、とんでもないエラーを吐いたので記録。
Exception Type: TypeError
Exception Value: __init__() takes exactly 1 argument (2 given)
ってわかりませんですがな。
実は、
FooGenericView.as_view()
の後ろが抜けていただけ。orz
Exception Type: TypeError
Exception Value: __init__() takes exactly 1 argument (2 given)
ってわかりませんですがな。
実は、
FooGenericView.as_view()
の後ろが抜けていただけ。orz
2012年4月4日水曜日
Django否定のfilter
こいつ気に入らないから、除いてなんてことあるよね。(ウソ)
from django.contrib.auth.models import User
from django.db.models import Q
User.objects.filter(~Q(id=1))
from django.contrib.auth.models import User
from django.db.models import Q
User.objects.filter(~Q(id=1))
登録:
投稿 (Atom)