interstar

1,755
reputation
324 views

Registered User

name interstar
member for 1 year
seen Dec 10 at 11:52
website
location brasilia
age 40
Dec
2
comment Django : Error thrown by database : relation “_mytable” does not exist (for a content_type) . Lost app-name
thanks ... I don't remember if I got to the bottom of this problem but it vanished at some point. I'll look out for this if something similar happens.
Dec
1
awarded  Nice Question
Nov
27
awarded  Popular Question
Nov
24
awarded  Notable Question
Nov
24
awarded  Notable Question
Oct
20
comment A simple framework for Google App Engine (like Sinatra)?
Funny. I was thinking I wanted something like that, just yesterday. Getting sick of running backwards and forwards between urls.py (in django) or the yaml file in GAE.
Oct
20
asked Arduino : sending MIDI up the USB
Oct
18
asked Python things which are neither True nor False
Sep
30
awarded  Popular Question
Sep
28
comment Django : How do I call “reverse” on a link to a static image file?
ok, thanks. I'll do that.
Sep
28
asked Django : How do I call “reverse” on a link to a static image file?
Sep
24
revised Anyone know an up-to-date (September 2009) example of file-uploading in Django?
added 10 characters in body
Sep
24
comment Anyone know an up-to-date (September 2009) example of file-uploading in Django?
actually. On second thoughts, the file doesn't seem to be saved anywhere. So I do have to do this manually??
Sep
24
revised Anyone know an up-to-date (September 2009) example of file-uploading in Django?
added 187 characters in body
Sep
24
comment Anyone know an up-to-date (September 2009) example of file-uploading in Django?
thanks. Yes I missed the request.FILES being passed into the form constructor in the official documentation example. I was reading another site which was showing it being accessed explicitly and a comments saying that this was out-of-date.
Sep
24
revised Anyone know an up-to-date (September 2009) example of file-uploading in Django?
added example; added 4 characters in body
Sep
24
asked Anyone know an up-to-date (September 2009) example of file-uploading in Django?
Sep
24
comment Are python modules first class citizens?
Ah. That's nice.
Sep
23
asked Are python modules first class citizens?
Sep
20
comment Django : debugging templatetags
Thanks guys. Good advice. Actually I found the problem : my file didn't have the same name as the library being included. Stupidly I assumed that the name in the {% load .. %} was the name of the app.
Sep
20
asked Django : debugging templatetags
Sep
16
awarded  Yearling
Sep
11
awarded  Tumbleweed
Sep
4
asked Django SESSION_COOKIE_DOMAIN
Aug
14
asked Django : How can I see a list of urlpatterns?
Aug
9
comment Extending the User model with custom fields in Django
Maybe, but you want to say why? I had to do this, simply because none of the other options worked for me.
Aug
9
asked Pinax Signup and Accounts
Aug
3
asked Django content-type : how do I get an object?
Aug
3
awarded  Popular Question
Jul
30
comment Django : error with custom inclusion_tag, can’t find file
ok, I found, thanks
Jul
30
asked Django : error with custom inclusion_tag, can’t find file
Jul
29
comment Where do browsers store dynamically downloaded Javascript?
Thanks. That was interesting, but not quite what I was asking about. I was thinking more of the dynamic loading under the control of the program. An answer to my previous question made it sound as though YUI was dynamically adding code to an in-memory copy of a js file and it was the organization of code in the browser's memory I was curious about.
Jul
29
asked Where do browsers store dynamically downloaded Javascript?
Jul
29
comment Weird browser / ajax error : Extra junk appears at the end of javascript files in firefox
Thanks. So, if I understand you correctly, you're saying that this extra, which I emphasize isn't in the source file on the server, could be a deliberately dynamically loaded compressed version of some other code?
Jul
29
asked Weird browser / ajax error : Extra junk appears at the end of javascript files in firefox
Jul
27
asked Django : How can I see what custom tags have been defined?
Jul
20
asked Javascript + Firebug : “cannot access optimized closure” What does it mean?
Jul
19
awarded  Popular Question
Jul
14
asked Django : How can I find a list of models that the ORM knows?
Jul
6
comment Django : Error thrown by database : relation “_mytable” does not exist (for a content_type) . Lost app-name
maybe not ... seem to have fixed ordering, but problem persists.
Jul
6
asked Is there a way to list Django signals?
Jul
6
comment Django : Error thrown by database : relation “_mytable” does not exist (for a content_type) . Lost app-name
yes ... the ordering is weird. Will keep investigating in that direction, cheers
Jul
6
comment Django : Error thrown by database : relation “_mytable” does not exist (for a content_type) . Lost app-name
that's an interesting thought ... let me check
Jul
6
asked Django : Error thrown by database : relation “_mytable” does not exist (for a content_type) . Lost app-name
Jul
6
comment Django : I have a save() which is failing. How can I see the SQL that’s generated?
That's it. Thanks.
Jul
6
asked Django : I have a save() which is failing. How can I see the SQL that’s generated?
Jul
5
asked Problem importing files in Django settings.py
Jul
5
comment Best practice for managing project variants in Git?
The point is that template differences may depend on the whim of each project. Today, the designers, clients etc. might prefer that Project1 template is broken into three tabbed areas, whereas Project2 shows them as a single scrolling page. In a month's time, Project2 might have adopted tabs, but using a different js widget library. What varies can vary enormously. What's constant is not what the template includes, but what includes it. (And passes information into it.)
Jul
5
comment Best practice for managing project variants in Git?
For example, we might have a user "profiles" app., where the profile template lives in "/templates/profiles/profile.html". We need to maintain minor differences between this file in our two projects. But we don't want to add profile.html to .gitignore because then changes won't be shared between the different developers working within this project.
Jul
5
comment Best practice for managing project variants in Git?
Hi Macarse, I've thought of a common repo, but I don't think it's sufficient. (As in, I'll still need to develop (bug fix) in the Project1 & Project2 repos and will want to push common fixes back to the common repo. The problem is I want to partially push back, without leaving git thinking that the common repo is out of date. Or is this wrong?