Re: Getting error on first step of tutorial

2013-04-30 Thread millerdl
No, I never figured it out. I deleted version 1.5 and specified version 1.4 for the installation. The same tutorial steps worked ok under version 1.4 so I gave up on 1.5 and just used 1.4. Prior to that I had set up a virtualenv with a 1.5 installation and that failed the same way, so I

Re: question about django tutorial

2013-04-30 Thread Mark Lybrand
Try: python manage.py syncdb If you have set up the rest of your project with the admin stuff, then this should create the tables for you. Then run python manage.py runserver again. Mark :) On Tue, Apr 30, 2013 at 1:45 PM, Christopher Spears wrote: > Hi! > > I am a

question about django tutorial

2013-04-30 Thread Christopher Spears
Hi! I am a Django newbie, so please bear with me. I am working on part 2 of the Django tutorial. I started my server with the following: python manage.py runserver Then I logged into my admin site. Earlier in the tutorial, I had created a model called Polls. I selected Polls from the

Re: noob "hello world" problem with URLconf

2013-04-30 Thread Karl
^ is only start with hello. it may be your issues in urls.py Karl Programmer at Olivet Institute of Technology http://oit.olivetuniversity.edu/ 在 2013年4月30日星期二UTC-4下午1时25分41秒,lev...@gmail.com写道: > > what´s up everyone. I just installed Django for the first time, leaving > php in the closet

Re: Using Django and R in a production environment?

2013-04-30 Thread Derek
Thanks Nick; RStudio looks like a really good tool for development work. The impression I get though, is that the server is designed for allowing interactive R sessions over the web; whereas for us Django is the primary requirement and calls to R should happen "behind the scenes". On

Re: Need explanation of the flow of info between my javascript, my View, and my template, trying to diagnose my current roadblock.

2013-04-30 Thread Shawn Milochik
You're welcome. You may be new to it, but you ask better questions than most I see. When I see "How do I do X?" I usually ignore it. When I see "Here's what I did. It's not working for some reason" then I try to help if I can. Keep up the good work. Shawn -- You received this message because

Re: Need explanation of the flow of info between my javascript, my View, and my template, trying to diagnose my current roadblock.

2013-04-30 Thread Javier Guerra Giraldez
On Tue, Apr 30, 2013 at 2:22 PM, <7equivale...@gmail.com> wrote: > "Redirect" Is that what you kids are calling it nowdays.. i found that word in RFC 1945, by Tim Berners-Lee and others, May 1996, where HTTP/1.0 was defined. hardly a new term in web lingo. -- Javier -- You received this

Re: Need explanation of the flow of info between my javascript, my View, and my template, trying to diagnose my current roadblock.

2013-04-30 Thread 7equivalents
"Redirect" Is that what you kids are calling it nowdays.. Thanks, that was the terminology I was lacking. That works I'm learning html, javascript, and Django all together on the fly so I'm not well versed in basics. Thankyou for your help! It helped clear up the puzzle a bit. -- You

Admin shows all users as staff and super user

2013-04-30 Thread Thomas De Reyck
Hi everyone, My very first question here. I hope anyone can help me out with this... I have created a Django powered site for my company. Everything works perfectly, except in our production environment, where I have one bug in the admin that is quite annoying: When I click a user to edit it,

Re: noob "hello world" problem with URLconf

2013-04-30 Thread Andrew Boltachev
Hi. Can you please post your full urls.py? 2013/4/30 > what´s up everyone. I just installed Django for the first time, leaving > php in the closet for a while. > > My problem is concerning the url patterns. I´ve pasted the example "Hello > world" code directly from the django

Multi-tenant database model with new user model?

2013-04-30 Thread Subodh Nijsure
Hi, We have old model for one of my django application that requires multi-tenant deployment. The database model I came up with is kind of _ugly_ to support the multi-tenancy. Are there any good examples of how one can write multi-tenant django application using the new AbstractUser classes?

noob "hello world" problem with URLconf

2013-04-30 Thread levito
what´s up everyone. I just installed Django for the first time, leaving php in the closet for a while. My problem is concerning the url patterns. I´ve pasted the example "Hello world" code directly from the django book to urls.py and views.py so I´ll leave out all extra code since it has

Re: Need explanation of the flow of info between my javascript, my View, and my template, trying to diagnose my current roadblock.

2013-04-30 Thread Shawn Milochik
If I understand your question and your code properly, the problem is that you are expecting a redirect, but what's happening is that the raw HTML from the view is being returned to your JavaScript function, which does nothing with it. It seems like what you should do is just do a normal HTML form

Need explanation of the flow of info between my javascript, my View, and my template, trying to diagnose my current roadblock.

2013-04-30 Thread 7equivalents
Hey guys, I need a little help. Here is what I'm trying to do. I would like to have a html button execute a javascript on click, and the javascript should send an GET reguest to the server which should execute the View for the page requested. For some reason I can't get it to work... here is

Re: Blog writen by django?

2013-04-30 Thread Alex Chiaranda
don't forget the django-cms project https://www.django-cms.org/https://www.django-cms.org/ On Monday, April 29, 2013 5:05:00 PM UTC-3, gilberto dos santos alves wrote: > > mezzanine is spetacular. thanks! ;>). and plug and run. > > Em segunda-feira, 29 de abril de 2013 00h50min42s UTC-3, Russell

Problem enconding

2013-04-30 Thread Hélio Miranda
I have a problem in my application that I am not able to solve, which is as follows: In my application I have the option of entering the bd data from a csv file, is part is ok, the problem is that the data come in csv utf-8 and I compare with data that will seek to mongodb that come in latin

Need to hire a Senior Django Web Architect

2013-04-30 Thread Andy
All, We have a great client in downtown DC. They need a Django architect to help them. Our client is a well known brand name company in the consumer media industry. The ideal candidate will have experience working with consumer facing websites, would not be afraid of Web Services, and has

Re: Using Django and R in a production environment?

2013-04-30 Thread Nick Santos
Is Django a hard and fast requirement? If so, is it just about integrating the routines? I think otherwise something like RStudio Server would work for you. I've deployed it previously and it was a pretty nice setup. It's based on Unix user accounts, so R processes run as if users were running

Re: Using Django and R in a production environment?

2013-04-30 Thread Derek
" if you write your own R analysis routines, why have them run in a web system" Two issues here: 1. We are writing R routines for someone else; who needs 'analysis on demand' 2. A web system means that multiple users in multiple locations can all readily access the same analysis routines (but