How to create screen capture of website

2013-06-16 Thread codingdaddy
Hi, I am sorry if this is the wrong place to ask this question. But basically, I would like to create social bookmarking site in Django. That is why I have this question "How do I create a png image of a website given url". Would anyone give me a pointer as to how I can do this? Thanks for your

Django 1.4 tutorial part 1 seems broken at the superuser creation stage.

2013-06-16 Thread Ed
Hello Dear Django Group. My first day with Django, I just got it installed on my computer, and am trying to follow along with the first tutorial: https://docs.djangoproject.com/en/1.4/intro/tutorial01/ I have Django's development server up, and I'm able to see the "It worked!" Django welcome p

Simple Static Content Site on Heroku?

2013-06-16 Thread Vincent Fulco
Fairly new to the framework and have been reading a ton of material. While I have found a couple of great git repos using Bootstrap with Django, I haven't found too many examples of dead simple sites other than some single page blogs. I am working on an informational site with at most 5 page

Re: Django 1.4 tutorial part 1 seems broken at the superuser creation stage.

2013-06-16 Thread gilberto dos santos alves
please see your locale environment var. what is your os (linux, windows, mac) please post your files. how you installed your django? Em domingo, 16 de junho de 2013 04h06min32s UTC-3, Ed escreveu: > > Hello Dear Django Group. > > My first day with Django, I just got it installed on my computer, a

Application Migration form Django 1.3 to Django 1.5

2013-06-16 Thread Sandeep kaur
I have this Web application made in Django 1.3. And now when I use it on Django 1.5, it does not work. It give error as no module simple. So, Is there any migration tool to make my application work easily on 1.5 version without manually making lot of changes? You help will be appreciated. -- Sand

Re: Application Migration form Django 1.3 to Django 1.5

2013-06-16 Thread Andreas Kuhne
2013/6/16 Sandeep kaur > I have this Web application made in Django 1.3. And now when I use it > on Django 1.5, it does not work. It give error as no module simple. > So, Is there any migration tool > to make my application work easily on 1.5 version without manually > making lot of changes? > Yo

Re: Application Migration form Django 1.3 to Django 1.5

2013-06-16 Thread Russell Keith-Magee
On Mon, Jun 17, 2013 at 4:13 AM, Sandeep kaur wrote: > I have this Web application made in Django 1.3. And now when I use it > on Django 1.5, it does not work. It give error as no module simple. > So, Is there any migration tool > to make my application work easily on 1.5 version without manually

Re: Application Migration form Django 1.3 to Django 1.5

2013-06-16 Thread Some Developer
On 16/06/2013 21:13, Sandeep kaur wrote: I have this Web application made in Django 1.3. And now when I use it on Django 1.5, it does not work. It give error as no module simple. So, Is there any migration tool to make my application work easily on 1.5 version without manually making lot of chang

Re: Application Migration form Django 1.3 to Django 1.5

2013-06-16 Thread Some Developer
On 16/06/2013 21:24, Andreas Kuhne wrote: Apart from that there are a couple of small things that didn't work. We had procedure based views, they had to be migrated to class based instead. You can still use function based views in Django 1.5. There is no need to migrate unless you really want

Re: data format value changes in database

2013-06-16 Thread Sergiy Khohlov
looks like you have a problem with a form : datafield support 2 formats, but datainput only one Many thanks, Serge +380 636150445 skype: skhohlov On Sat, Jun 15, 2013 at 2:29 PM, wrote: > view.py > > def when(request): > > if not report.manual_date: > report.manua

Re: Simple Static Content Site on Heroku?

2013-06-16 Thread Vibhu Rishi
In this case - do you even need django ? A html site with just bootstrap for the response ux will be enough. Vibhu On Sun, Jun 16, 2013 at 7:32 PM, Vincent Fulco wrote: > Fairly new to the framework and have been reading a ton of material. > > While I have found a couple of great git repos usin