can i store non-db-related variables in a model? i'm running into some problems and i want to know if it's because of this. example: http://dpaste.com/819631/
Oddstr13 joined the channel
vladyslav has quit
willie joined the channel
mattmcc
NaOH: Well, a model is still a Python class, so it can have attributes that aren't fields.
I put a {{ formset.management_form }} in the template
and I got a MultiValueDictKeyError
mattmcc
What does it say?
logan5 has quit
hyperair joined the channel
Kapura
er
a lot of things
bojo__ joined the channel
bojo_ has quit
_Nord_ has quit
kvda has quit
_Nord_ joined the channel
aberrant joined the channel
xchu joined the channel
__machine
can you create a signal for an abstract model and it will work for all actual models derived from it?
racycle has quit
mattmcc
A signal, or a listener?
xsamurai joined the channel
ben_nicoll joined the channel
rams3377 joined the channel
ReekenX|AFK has quit
__machine
listener... just tested it and it didnt seem to work
juan--d-_-b joined the channel
CrypticSquared has quit
lobo_d_b has quit
matthewlmcclure has quit
neataroni has quit
Back2Basics has quit
juan--d-_-b has quit
Back2Basics joined the channel
Back2Basics has quit
johnnny22 joined the channel
syst3ml00t joined the channel
eosphoros joined the channel
ICheeseYou joined the channel
m0n5t3r has quit
johnnny22
whats the best chat app ?
crazedpsyc
MSN Messenger.
johnnny22
lol
for django that is !:)
i wanna build a streaming site, like ustream
crazedpsyc
I dunno, I just link to qwebirc
natea has quit
johnnny22
I don't know if a irc based client would do
atula joined the channel
Jononomo has quit
ICheeseYou
johnnny22, streaming site for video ?
johnnny22
ya
Jononomo joined the channel
not like youtube, but only for live streaming that is.
natea joined the channel
syst3ml00t
Build your own? :p
BabySuperman
How do you set like... "Do not reply here! <noreply@mydomain.com>"; I have django-registration set to send email from noreply@mydomain.com -- but how do I "label" that email as something instead of just receiving an email from "noreply@mydomain" it says "Domain Web Team" or something?
xsamurai has quit
johnnny22
syst3ml00t: that's what I'm thinking of doing, just wondered if there was some nice skeleton apps, or some examples. Also, i'm not yet sure how I'll handle the chat feature, pondering between having the chat go through the webserver/comet(or something like that), or simply having the chats go through the video stream socket.
I think you'll want to do separate because if you have it go through the video stream, it may affect performance of the stream.
svetlyak40wt_ joined the channel
svetlyak40wt has quit
mindsocket has left the channel
ben_nicoll has quit
johnnny22
the problem with having the chat go through the webserver, is that it might be totally offsync with the video, while instream, it'll be more synch'ed, no ?
but you've got a point, it might affect the quality of the stream.
Jononomo has quit
syst3ml00t: I'm also pondering about having the stream not go through a server but it being p2p style. That is sort of why I'm pondering about having the chat's go through the streaming p2p sockets.
syst3ml00t
johnnny22: In that case, if it's p2p, than yeah, I would probably go through the streaming sockets
johnnny22
noted
Derailed
has anyone here used tastypie? How would I make a simple API call that takes a POST of some kind, applies it to a django form, and returns as a result whatever the validation errors were that were produced? I recognize that this isn't REST as such, but it's still an API call I'd like to have in the same place as our restful interfaces.
ben_nicoll joined the channel
johnnny22
syst3ml00t: all that my server would have to do, is handling the user channels I'm guessing :o|
NaOH has quit
Jononomo joined the channel
bradleyayers has quit
kvda joined the channel
natea has quit
biker joined the channel
graingert has quit
NaOH joined the channel
atula
This is pissing me off! Arrrgh. I have 2 unit tests, a_test, b_test, testing two method a, b. the problem is, when a throws an exception test fails in b_test. I've been looking at why and it's getting more aggravating.
johnnny22
syst3ml00t: nevertheless how i stream, the list of user channels could be accessible via a channel list page, but I'd also like it so that the server can "push" notifications to the browsing users that a new channel was "opened", and I'm not sure what's the best way to go about that.