Re: i am trying to learn django from django documentation but i am getting an error message in the first part of the documentation

2021-07-04 Thread Lalit Suthar
rewrite polls/urls.py like below path(''", views.index, name='index'), On Fri, 25 Jun 2021 at 18:59, Symaxx wrote: > I started learning Django from the documentation but it was very hard for > me and it took me a very long time to grasp the concept > > I suggest you try using books by w.s vincen

Re: i am trying to learn django from django documentation but i am getting an error message in the first part of the documentation

2021-06-25 Thread Symaxx
I started learning Django from the documentation but it was very hard for me and it took me a very long time to grasp the concept I suggest you try using books by w.s vincent http://wsvincent.com/books/ these are the best for me and them help you stay engaged On Wed, Jun 23, 2021 at 5:19 PM vatsa

i am trying to learn django from django documentation but i am getting an error message in the first part of the documentation

2021-06-23 Thread vatsal narula
Using the URLconf defined in blogs.urls, Django tried these URL patterns, in this order: admin/ The current path, polls/, didn’t match any of these. this is the error i am getting after i wrote the following code: 1. for urls.py from django.contrib import admin from django.urls

Re: about django documentation

2021-01-31 Thread Ryan Nowakowski
I recommend following the tutorial all the way through. Getting that tutorial running in your own computer will answer 95% of a beginner's questions. https://docs.djangoproject.com/en/3.1/intro/tutorial01/ On January 18, 2021 9:27:56 PM CST, a a wrote: >i have end the django introduction but i

Re: about django documentation

2021-01-26 Thread Bmt Herald
https://www.youtube.com/watch?v=-s7e_Fy6NRU&list=PL-osiE80TeTtoQCKZ03TU5fNfx2UY6U4p&index=10 On Tue, Jan 19, 2021 at 5:11 PM dupakoor kannan wrote: > Hi, > > Try this first https://youtu.be/UmljXZIypDc and read the documentation > again. > > Hope it helps > > > > On Tue, Jan 19, 2021 at 8:40 AM

Re: about django documentation

2021-01-19 Thread dupakoor kannan
Hi, Try this first https://youtu.be/UmljXZIypDc and read the documentation again. Hope it helps On Tue, Jan 19, 2021 at 8:40 AM a a wrote: > how can i understand from documentation? > i was ended the introduction then i have continue to models but how can i > implementation? > > -- > You rec

about django documentation

2021-01-19 Thread a a
i have end the django introduction but i do not know where continue i was start with models but there are error in terminal NameError: name 'Person' is not defined this is link: https://docs.djangoproject.com/en/3.1/topics/db/models/ -- You received this message because you are subscribed to th

about django documentation

2021-01-19 Thread a a
how can i understand from documentation? i was ended the introduction then i have continue to models but how can i implementation? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from i

Re: [Django Documentation] Auto Scrolling the contents along with the page

2019-09-13 Thread Lokesh Sanapalli
re you in the right side ? like make bold text as marker to know you > where you are ??? > > On Friday, 13 September 2019 13:54:57 UTC+2, Lokesh Sanapalli wrote: >> >> Hi Everyone, >> >> I am a big fan of django and using it since long. While reading the >&

Re: [Django Documentation] Auto Scrolling the contents along with the page

2019-09-13 Thread mohamed khaled
and using it since long. While reading the django > documentation I felt that we need the feature of auto scrolling the right > side contents along with the page. > > For example take this page: > https://docs.djangoproject.com/en/2.2/topics/cache/ > > As you can see from the ima

Re: [Django Documentation] Auto Scrolling the contents along with the page

2019-09-13 Thread Lokesh Sanapalli
eryone, > > I am a big fan of django and using it since long. While reading the django > documentation I felt that we need the feature of auto scrolling the right > side contents along with the page. > > For example take this page: > https://docs.djangoproject.com/en/2.2/topic

Re: PLEASE HELP! Django documentation, Writing Your First App, Part 4

2019-02-03 Thread Atsunori Kaneshige
Hi Carsten, Thank you! I finally understood what's happening. I should have added choices into each question. Now, choice_set.all thing is working! Thank you for your advice! Nori On Sunday, February 3, 2019 at 3:20:39 PM UTC-5, Carsten Fuchs wrote: > > Well, you're adding choices to q = Questi

Re: PLEASE HELP! Django documentation, Writing Your First App, Part 4

2019-02-03 Thread Atsunori Kaneshige
Hi Nitin, Thank you! I finally understood what you said. Now working fine. Actually it was working, but I did not understand. Thank you! Nori On Sunday, February 3, 2019 at 11:08:34 AM UTC-5, Nitin Kalmaste wrote: > > You have to add Choices for each questions you have created in database > li

Re: PLEASE HELP! Django documentation, Writing Your First App, Part 4

2019-02-03 Thread Carsten Fuchs
Well, you're adding choices to q = Question.objects.get(pk=1). But is this also the question you call the view with? I suggest you add a few more print statements below your existing print(question) For example: print(question.pk) print(question.choice_set.all()) # Or, a bit mo

Re: PLEASE HELP! Django documentation, Writing Your First App, Part 4

2019-02-03 Thread Nitin Kalmaste
You have to add Choices for each questions you have created in database like the process is same as you used for the questions. On Sun, Feb 3, 2019, 8:53 PM Atsunori Kaneshige Hi Nitin, > > Thank you for your comment. > > I did > > jango-admin startproject mysite > > and cd mysite, then > > python

Re: PLEASE HELP! Django documentation, Writing Your First App, Part 4

2019-02-03 Thread Atsunori Kaneshige
*Here is the codes about choice* In [27]: q = Question.objects.get(pk=1) In [28]: q.choice_set.all() Out[28]: In [29]: q.choice_set.create(choice_text='Not much',votes=0) Out[29]: In [30]: q.choice_set.create(choice_text='The sky',votes=0) Out[30]: In [31]: c = q.choice_set.create(c

Re: PLEASE HELP! Django documentation, Writing Your First App, Part 4

2019-02-03 Thread Atsunori Kaneshige
Hi Carsten, Sorry, are you talking about Writing Your First App, Part2? The page below? https://docs.djangoproject.com/en/2.1/intro/tutorial02/ Yeah, when I tried this, there was something wrong. *I did that again. I copied and pasted my terminal below.* *seems like migration was successful when

Re: PLEASE HELP! Django documentation, Writing Your First App, Part 4

2019-02-03 Thread Atsunori Kaneshige
On Sunday, February 3, 2019 at 10:22:56 AM UTC-5, Atsunori Kaneshige wrote: > > Hi Nitin, > > Thank you for your comment. > > I did > > jango-admin startproject mysite > > and cd mysite, then > > python manage.py runserver > > and server is working, so I did > > opython manage.py startapp polls

Re: PLEASE HELP! Django documentation, Writing Your First App, Part 4

2019-02-03 Thread Atsunori Kaneshige
Hi Nitin, Thank you for your comment. I did jango-admin startproject mysite and cd mysite, then python manage.py runserver and server is working, so I did opython manage.py startapp polls polls app was successfully created, and stopped the server because I wanted to user postgresql inste

Re: PLEASE HELP! Django documentation, Writing Your First App, Part 4

2019-02-03 Thread Malick Cisse
Hi, copy and paste wouldn't actually make you understand Django. Try to write the code yourself and you see how quickly your understanding grow. On Saturday, February 2, 2019 at 10:02:14 PM UTC-5, Atsunori Kaneshige wrote: > > Hi Django users, > > I started using Django recently. > I am followi

Re: PLEASE HELP! Django documentation, Writing Your First App, Part 4

2019-02-02 Thread Carsten Fuchs
Hi Nori, does the choice actually exist? Can you find it if you query the choices using the ORM in `./manage.py shell`? Best regards, Carsten Am 03.02.19 um 03:59 schrieb Atsunori Kaneshige: > Hi Django users, > > I started using Django recently. > I am following the official Django tutorial.

Re: PLEASE HELP! Django documentation, Writing Your First App, Part 4

2019-02-02 Thread Nitin Kalmaste
Have you migrated database and added any question there? On Sun, Feb 3, 2019, 8:39 AM Atsunori Kaneshige Oh, one note is that I am using postgresql. > everything else except vote function in views.py seems working. > > Sorry, any help would be really appreciated! > > Nori > > On Saturday, Februar

Re: PLEASE HELP! Django documentation, Writing Your First App, Part 4

2019-02-02 Thread Atsunori Kaneshige
Oh, one note is that I am using postgresql. everything else except vote function in views.py seems working. Sorry, any help would be really appreciated! Nori On Saturday, February 2, 2019 at 10:02:14 PM UTC-5, Atsunori Kaneshige wrote: > > Hi Django users, > > I started using Django recently. >

PLEASE HELP! Django documentation, Writing Your First App, Part 4

2019-02-02 Thread Atsunori Kaneshige
Hi Django users, I started using Django recently. I am following the official Django tutorial. I am just at Writing Your First Django App, Part4, and I have been just copying and pasting all codes. But I have a problem in vote. I inserted print(question) and this is printed in detail.html also,

Re: I am following the official Django documentation and trying to make the polls app. But when I run the command python manage.py shell I get the console error.

2018-04-30 Thread Avitab Ayan Sarmah
pril 30, 2018 4:07 PM > *To:* Django users > *Subject:* I am following the official Django documentation and trying to > make the polls app. But when I run the command python manage.py shell I get > the console error. > > > > The code of my polls/models.py is: > > i

RE: I am following the official Django documentation and trying to make the polls app. But when I run the command python manage.py shell I get the console error.

2018-04-30 Thread Matthew Pava
You need a space between def and __str__ From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On Behalf Of Avitab Ayan Sarmah Sent: Monday, April 30, 2018 4:07 PM To: Django users Subject: I am following the official Django documentation and trying to make the polls app

I am following the official Django documentation and trying to make the polls app. But when I run the command python manage.py shell I get the console error.

2018-04-30 Thread Avitab Ayan Sarmah
The code of my polls/models.py is: import datetime from django.db import models from django.utils import timezone class Question(models.Model): #... def was_published_recently(self): return self.pub_date >= timezone.now() - datetime.timedelta(days=1) def__str__(self):

Re: I am following the official Django documentation and trying to make the polls app. But when I run the command python manage.py makemigrations polls I get the console error.

2018-04-30 Thread Avitab Ayan Sarmah
Yes I found the error George, I mistakenly typed polss in settings. Now the code is running fine On Tue 1 May, 2018, 1:03 AM George Lubaretsi, wrote: > Looks like you have a typo somewhere. > > Exception says that it can't find a module `polss` while it should be > `polls`. Check your settings a

Re: I am following the official Django documentation and trying to make the polls app. But when I run the command python manage.py makemigrations polls I get the console error.

2018-04-30 Thread George Lubaretsi
Looks like you have a typo somewhere. Exception says that it can't find a module `polss` while it should be `polls`. Check your settings and imports On Mon, Apr 30, 2018 at 11:29 PM Avitab Ayan Sarmah wrote: > The code I am using for the models is: > > from django.db import models > > class Que

I am following the official Django documentation and trying to make the polls app. But when I run the command python manage.py makemigrations polls I get the console error.

2018-04-30 Thread Avitab Ayan Sarmah
The code I am using for the models is: from django.db import models class Question(models.Model): question_text = models.CharField(max_length=200) pub_date = models.DateTimeField('date published') class Choice(models.Model): question = models.ForeignKey(Question) choice_text = mo

Re: Django Documentation 1.7 shows "django-admin.py" whereas it should be "django-admin"

2017-09-11 Thread Deep Sukhwani
The answer is in the first post in this thread! -- Regards Deep L Sukhwani On 11 September 2017 at 10:51, margana harika wrote: > > hello sir, >even i got the same problem can you just tell me how did > you solve this please!! > > -- > You received this message because you a

Re: Django Documentation 1.7 shows "django-admin.py" whereas it should be "django-admin"

2017-09-11 Thread margana harika
hello sir, even i got the same problem can you just tell me how did you solve this please!! -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: Error even after following the django documentation

2017-06-16 Thread Andréas Kühne
Hi, Could you please include your models.py file? So that we can see the model declarations. Regards, Andréas 2017-06-16 14:07 GMT+02:00 danbmathew : > Thanks for the reply.Well i used the same model shown in the > documentation.I even cross checked all my codes to verify that anything is > ou

Re: Error even after following the django documentation

2017-06-16 Thread danbmathew
Thanks for the reply.Well i used the same model shown in the documentation.I even cross checked all my codes to verify that anything is out of place.Even then the error appears. On Thursday, June 15, 2017 at 11:12:55 PM UTC+5:30, Hemhem wrote: > > TypeError: 'choice_text' is an invalid keyword

Re: Error even after following the django documentation

2017-06-15 Thread Oladipupo Elegbede
TypeError: 'choice_text' is an invalid keyword argument for this function That above, is where the problem is where the problem is so I am going to guess you need to check your model if you wrote everything correctly. If I can see what your model looks like, I can probe in. On Thu, Jun 15, 2017 at

Error even after following the django documentation

2017-06-15 Thread danbmathew
Well I'm new to django and my code is just as in the documentation.But got an error while trying to run the codeline q.choice_set.create(choice_text='Not much', votes=0). This part of the code is almost at the end of the segment named Playing With API.I will also post the error. Traceback (most

Re: Django documentation tutorial part 1

2017-02-15 Thread Dário Carvalho
t; I am working through the tutorial included with the django documentation, >> and I am confused as to why my url is not working. I have the most recent >> versions of django and python (the ones that the tutorial says to use) and >> I believe my file structure is correct, you can see

Re: Django documentation tutorial part 1

2017-02-14 Thread Alexis Carmona
Hey, I checked your code on githubt and i think that you missed yo import your views in your urls file El lunes, 6 de febrero de 2017, 17:12:30 (UTC-4), Philip escribió: > > Hello, > > I am working through the tutorial included with the django documentation, > and I am confused a

Re: Django documentation tutorial part 1

2017-02-14 Thread Dário Carvalho
host"? I had a similar > problem when I used "localhost" > > On Tuesday, February 7, 2017 at 5:12:30 AM UTC+8, Philip wrote: >> >> Hello, >> >> I am working through the tutorial included with the django documentation, >> and I am confused as to why m

Re: Django documentation tutorial part 1

2017-02-07 Thread Gerald Brown
Have you tried using "127.0.0.1" instead of "localhost"? I had a similar problem when I used "localhost" On Tuesday, February 7, 2017 at 5:12:30 AM UTC+8, Philip wrote: > > Hello, > > I am working through the tutorial included with the django docume

Re: Django documentation tutorial part 1

2017-02-06 Thread Dário Carvalho
You welcome. I'm new in django too. Em segunda-feira, 6 de fevereiro de 2017 21:47:46 UTC-2, Philip escreveu: > > Solved. > > On Monday, February 6, 2017 at 3:12:30 PM UTC-6, Philip wrote: >> >> Hello, >> >> I am working through the tutorial included wi

Re: Django documentation tutorial part 1

2017-02-06 Thread Philip
Solved. On Monday, February 6, 2017 at 3:12:30 PM UTC-6, Philip wrote: > > Hello, > > I am working through the tutorial included with the django documentation, > and I am confused as to why my url is not working. I have the most recent > versions of django and python (the ones

Re: Django documentation tutorial part 1

2017-02-06 Thread Philip
On Monday, February 6, 2017 at 3:12:30 PM UTC-6, Philip wrote: > > Hello, > > I am working through the tutorial included with the django documentation, > and I am confused as to why my url is not working. I have the most recent > versions of django and python (the ones that

Re: Django documentation tutorial part 1

2017-02-06 Thread Philip
r'^polls/', include('polls.urls')), > url(r'^admin/', admin.site.urls), > ] > > I think it's going to work now. > > Em segunda-feira, 6 de fevereiro de 2017 19:12:30 UTC-2, Philip escreveu: >> >> Hello, >> >> I am worki

Re: Django documentation tutorial part 1

2017-02-06 Thread Philip
> skype: skhohlov > > On Mon, Feb 6, 2017 at 7:49 PM, Philip > > wrote: > >> Hello, >> >> I am working through the tutorial included with the django documentation, >> and I am confused as to why my url is not working. I have the most recent >>

Re: Django documentation tutorial part 1

2017-02-06 Thread Dário Carvalho
^polls/', include('polls.urls')), url(r'^admin/', admin.site.urls), ] I think it's going to work now. Em segunda-feira, 6 de fevereiro de 2017 19:12:30 UTC-2, Philip escreveu: > > Hello, > > I am working through the tutorial included with the dja

Re: Django documentation tutorial part 1

2017-02-06 Thread Sergiy Khohlov
I have not seen setting.py in your project . Also could you please send your runserver command and output Many thanks, Serge +380 636150445 skype: skhohlov On Mon, Feb 6, 2017 at 7:49 PM, Philip wrote: > Hello, > > I am working through the tutorial included with the django docu

Django documentation tutorial part 1

2017-02-06 Thread Philip
Hello, I am working through the tutorial included with the django documentation, and I am confused as to why my url is not working. I have the most recent versions of django and python (the ones that the tutorial says to use) and I believe my file structure is correct, you can see it on

Re: Django documentation release 1.10.1a1

2016-08-30 Thread Rich Shepard
On Tue, 30 Aug 2016, Tim Graham wrote: I don't think there have been any recent changes to the styling, but if you'd like to contribute, the place to look is probably https://github.com/django/django/tree/master/docs/_theme. Tim, I don't know what to do once I'm on that page but when time p

Re: Django documentation release 1.10.1a1

2016-08-30 Thread Tim Graham
I don't think there have been any recent changes to the styling, but if you'd like to contribute, the place to look is probably https://github.com/django/django/tree/master/docs/_theme. On Tuesday, August 30, 2016 at 6:15:45 PM UTC-4, Rich Shepard wrote: > > I don't know how this PDF displays

Django documentation release 1.10.1a1

2016-08-30 Thread Rich Shepard
I don't know how this PDF displays in other viewers, but in xpdf, mupdf, and acroread important strings in the text are very difficult to read because they have very low contrast with the white background. For example, comments are in a light grey and important strings are in a very pale yell

Re: Django Documentation 1.7 shows "django-admin.py" whereas it should be "django-admin"

2015-03-04 Thread James Schneider
Not technically a bug, although it is a common point of confusion. It depends on how you installed Django. Both perform the same function on their respective systems. There's a note with this link on the first page of the tutorial, although admittedly I believe they should be more explicit with thi

Django Documentation 1.7 shows "django-admin.py" whereas it should be "django-admin"

2015-03-04 Thread Deep Sukhwani
Hi, I am a newbie to this community and I am not sure how should I submit this bug/error in 1st part of Django Tutorial. Here's the error: On page Writing your first Django app, part 1 | Creating a project notice it

Re: trouble logging in to post ticket for django documentation

2014-08-22 Thread Steve
Thanks Russ. Everything's peachy. I poked around enough before posting my message that I ought have put that together myself. Sorry to have bothered you. Cheers. On Friday, 22 August 2014 20:33:58 UTC-4, Russell Keith-Magee wrote: > > Hi Steve, > > We recently changed the login procedures for

Re: trouble logging in to post ticket for django documentation

2014-08-22 Thread Russell Keith-Magee
Hi Steve, We recently changed the login procedures for our Trac instance, and we're still shaking out some of the bugs. In this case, the forbidden page has the wrong link on it. If you want to log in with your Github account, visit: https://code.djangoproject.com/github/login then go ahead an l

trouble logging in to post ticket for django documentation

2014-08-22 Thread Steve
Total noob here. I'm working through the (very helpful) django tutorials. I'd like to enter a suggestion ticket. I've created a github account and logged into it, yet I still receive the following error message from code.djangoproject.com: You are currently not logged in. You may want to do

Re: In the Django documentation, Where can I found URLS.PY Symbol explanations?

2014-06-19 Thread Mike Dewhirst
On 20/06/2014 8:26 AM, Uzi Lumbroso wrote: ?In the Django documentation, Where can I found URLS.PY Symbol explanations (for example: (?P[-\w]+)). What is ... [-\w]+) matches I couldn’t find it in the Django documentation. Thanks for the help It is more or less plain Python

In the Django documentation, Where can I found URLS.PY Symbol explanations?

2014-06-19 Thread Uzi Lumbroso
?In the Django documentation, Where can I found URLS.PY Symbol explanations (for example: (?P[-\w]+)). What is ... [-\w]+) matches I couldn’t find it in the Django documentation. Thanks for the help -- You received this message because you are subscribed to the Google Groups "D

Re: django documentation tutorial 3 questions. home page missing.

2014-05-09 Thread François Schiettecatte
Presumably because there is nothing set to handle localhost:8000/ in your urlpatterns like this: # Root view, goes to 'app.home.views.page' (r'^$', 'app.home.views.page'), François On May 8, 2014, at 11:46 PM, cheesiong lim wrote: > hi all, > i am learning django by using django

django documentation tutorial 3 questions. home page missing.

2014-05-08 Thread cheesiong lim
hi all, i am learning django by using django 1.6 documents tutorial 1 - 6. this round is my 4th try and, previous 3 try was successful and i understand more on every try. i am in tutorial 3 now, to create views. according to the documents, after i created a view, i need to map it to a URL.

Re: Unofficial Kindle builds of the Django documentation

2014-01-17 Thread Alex Strickland
Hi Markus I've done .mobi builds of the Django documentation so you can read it on a Kindle: Cool! Thanks. Will check it out. -- Regards Alex -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and

Unofficial Kindle builds of the Django documentation

2014-01-16 Thread Markus Amalthea Magnuson
Hey all, I've done .mobi builds of the Django documentation so you can read it on a Kindle: http://alimony.github.io/django-docs-kindle/ Just thought people here might be interested :) -- You received this message because you are subscribed to the Google Groups "Django users&

Re: Django documentation code ?

2013-07-26 Thread Mike Dewhirst
On 27/07/2013 3:37am, Vinod Halaharvi wrote: Is there a way to download just the code examples listed in the Django documentation pages ? That's not necessarily a good idea but it depends what you want to do.. Why do you want to do that? It wouldn't be too difficult to write a lit

Django documentation code ?

2013-07-26 Thread Vinod Halaharvi
Is there a way to download just the code examples listed in the Django documentation pages ? VH -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to dj

Remove Django Documentation Items

2013-04-24 Thread Trevor Reed
Hello guys, is it possible to remove entries from the Django generated Documentation? Thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsu

Django Documentation

2013-04-24 Thread Trevor Reed
Hello, I am relatively new to Django, but I love it so far. Is it possible to remove categories from the application documentation page, such as Tags, Filters, and Views. Thank You -- You received this message because you are subscribed to the Google Groups "Django users" grou

Re: Possible bug in the Django documentation

2012-05-14 Thread Joseph Mornin
Ah. I didn't notice that I was using the dev documentation. Thanks! On 5/14/12 10:04 AM, Alasdair Nicol wrote: Hi Joseph, On 14/05/12 14:26, Joseph Mornin wrote: Hi, I noticed a possible bug in the Django documentation. The authentication docs (athttps://docs.djangoproject.com/en/dev/t

Re: Possible bug in the Django documentation

2012-05-14 Thread Alasdair Nicol
Hi Joseph, On 14/05/12 14:26, Joseph Mornin wrote: Hi, I noticed a possible bug in the Django documentation. The authentication docs (at https://docs.djangoproject.com/en/dev/topics/auth/) include this sample code for registration/login.html: http://dpaste.com/747993/ Running this code gives

Possible bug in the Django documentation

2012-05-14 Thread Joseph Mornin
Hi, I noticed a possible bug in the Django documentation. The authentication docs (at https://docs.djangoproject.com/en/dev/topics/auth/) include this sample code for registration/login.html: http://dpaste.com/747993/ Running this code gives me this error: ### TemplateSyntaxError at /login

Re: Django documentation search not working

2010-10-07 Thread NoviceSortOf
Steve: Thanks, the problem must be Firefox plugin I'm running because Opera works just fine. Thanks for the suggestion. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsu

Re: Django documentation search not working

2010-10-02 Thread Steve Holden
On 10/2/2010 4:45 PM, NoviceSortOf wrote: > I used to be able to go to the following link and > seach django documents. > > http://docs.djangoproject.com/en/dev//search/ > >>From there I could search anything from 'widgets' to > 'login()' and find the related document/page discussion that time. >

Re: Django documentation search not working

2010-10-02 Thread diogobaeder
Hi there, I cannot enter the site at all, right now; I just opened a post here about that: http://groups.google.com.br/group/django-users/browse_thread/thread/18a99e355c601fc3?hl=pt-BR Does it have anything to do with the issue stated above? Thanks! Diogo On 2 out, 17:45, NoviceSortOf wrot

Django documentation search not working

2010-10-02 Thread NoviceSortOf
I used to be able to go to the following link and seach django documents. http://docs.djangoproject.com/en/dev//search/ >From there I could search anything from 'widgets' to 'login()' and find the related document/page discussion that time. Now on that page search yields no results irregardless

Re: Can't build Django documentation

2010-08-18 Thread Kevin
Thanks for that info. I downgraded to Sphinx 0.6.6 and all is well. On Aug 14, 11:14 am, Ramiro Morales wrote: > On Sat, Aug 14, 2010 at 9:07 AM, DrBloodmoney wrote: > > > The docs [0] mention an incompatibility with the currently released > > Sphinx. I can't build right now either, and I'm too

Re: Can't build Django documentation

2010-08-14 Thread Ramiro Morales
On Sat, Aug 14, 2010 at 9:07 AM, DrBloodmoney wrote: > > The docs [0] mention an incompatibility with the currently released > Sphinx. I can't build right now either, and I'm too lazy to install > Sphinx from source. > > [0] http://docs.djangoproject.com/en/dev/intro/whatsnext/#as-html-locally Th

Re: Can't build Django documentation

2010-08-14 Thread bagheera
Dnia 14-08-2010 o 05:11:25 Kevin napisał(a): I tried to build the Django docs and got an error. $ cd django/docs/ $ make html sphinx-build -b djangohtml -d _build/doctrees . _build/html Running Sphinx v1.0.1 loading pickled environment... not yet created building [djangohtml]: targets for 42

Re: Can't build Django documentation

2010-08-14 Thread Ramiro Morales
On Sat, Aug 14, 2010 at 12:11 AM, Kevin wrote: > I tried to build the Django docs and got an error. > > $ cd django/docs/ > $ make html > sphinx-build -b djangohtml -d _build/doctrees   . _build/html > Running Sphinx v1.0.1 > [...] > Exception occurred: >  File "/Users/src/django_docs/_ext/djangod

Re: Can't build Django documentation

2010-08-14 Thread DrBloodmoney
On Fri, Aug 13, 2010 at 11:11 PM, Kevin wrote: > I tried to build the Django docs and got an error. > > $ cd django/docs/ > $ make html > sphinx-build -b djangohtml -d _build/doctrees   . _build/html > Running Sphinx v1.0.1 > loading pickled environment... not yet created > building [djangohtml]:

Can't build Django documentation

2010-08-13 Thread Kevin
I tried to build the Django docs and got an error. $ cd django/docs/ $ make html sphinx-build -b djangohtml -d _build/doctrees . _build/html Running Sphinx v1.0.1 loading pickled environment... not yet created building [djangohtml]: targets for 427 source files that are out of date updating envi

Django documentation error? (minor, but misleading)

2009-12-09 Thread chefsmart
On the page http://www.djangoproject.com/documentation/models/many_to_many/ under Sample API Usage where it says: - " # Add a Publication directly via publications.add by using keyword arguments. >>> new_publication = a2.publications.create(title='Highlights for Children') " I think it should sa

Re: Django documentation site is SLOW

2009-08-09 Thread Denis Cheremisov
I thinkg it's firefox issue - with google chromium, midori or opera it's felt much faster. On Aug 7, 3:46 pm, Jo wrote: > Surely can't only be me that finds the main Django site painfully > slow? There is some javascript in there or something that just kills > my browser. > > I'm using Firefox o

Re: Django documentation site is SLOW

2009-08-08 Thread Torsten Bronger
Hallöchen! Torsten Bronger writes: > [...] > > While loading the pages is sufficiently fast for me, scrolling has > always been slightly annoying for me, with various FFs on various > computers. [...] > > Funny enough, scrolling with the scroll bar is rather smooth, > while scrolling with the m

Re: Django documentation site is SLOW

2009-08-08 Thread Lakshman Prasad
Indeed for most of the people in this group Django documentation is very often consulted resource. It makes a lot of sense to have those locally. If you have a svn co, documentation is within the checkout, so you need to browse to file:///home/name/django-trunk/docs/_build/html/index.html and you

Re: Django documentation site is SLOW

2009-08-08 Thread Torsten Bronger
Hallöchen! Malcolm Tredinnick writes: > On Sat, 2009-08-08 at 00:14 -0700, Thierry wrote: > >> Just wanted to add my own testimony: I too, noticed serious >> performance issues with Firefox when consulting Django >> documentation. > > "Performance issues&qu

Re: Django documentation site is SLOW

2009-08-08 Thread Malcolm Tredinnick
On Sat, 2009-08-08 at 00:14 -0700, Thierry wrote: > Hi, > > Just wanted to add my own testimony: I too, noticed serious > performance issues with Firefox when consulting Django documentation. "Performance issues" could many a myriad of things. Is it slow to render, or slo

Re: Django documentation site is SLOW

2009-08-08 Thread Thierry
Hi, Just wanted to add my own testimony: I too, noticed serious performance issues with Firefox when consulting Django documentation. So far it is the only website where I experience this. I am home, using Firefox 3.5.2 on Ubuntu 9.04 (officially installed package 'firefox-3.5')

Re: Django documentation site is SLOW

2009-08-07 Thread Karen Tracey
On Fri, Aug 7, 2009 at 10:06 AM, Jo wrote: > > Ok, after a bit of tinkering I think I might have found the culprit. > > Seems fine in Opera, and much better in Firefox when I disable Adblock > Plus (the only add-on I've got installed!) > > Still a little sluggish in Firefox, but they are big page

Re: Django documentation site is SLOW

2009-08-07 Thread Jo
Ok, after a bit of tinkering I think I might have found the culprit. Seems fine in Opera, and much better in Firefox when I disable Adblock Plus (the only add-on I've got installed!) Still a little sluggish in Firefox, but they are big pages on quite an old machine. Goes from unusable to almost

Re: Django documentation site is SLOW

2009-08-07 Thread Russell Keith-Magee
On Fri, Aug 7, 2009 at 8:06 PM, Léon Dignòn wrote: > > I have an Intel C2D E2200 with 4 GB RAM. The Django docs are killing > my browser, it feels like FireSLUG instead of Firefox 3.5 . I don't know what to say. Your experience in no way matches my own. I use Safari and Firefox, and I certain

Re: Django documentation site is SLOW

2009-08-07 Thread Sam Walters
Hi Its probably not the browser. I am using firefox 3.5 on an eee pc and the documentation is fine. This is with Javascript disabled using noscript however i just turned it on again and no noticable difference in top readings *You should look at the install addons of firefox, eg: some plugin whic

Re: Django documentation site is SLOW

2009-08-07 Thread Léon Dignòn
Without it's better, but still now good enough for three colors and a little bit of text. On Aug 7, 2:09 pm, Mirat Bayrak wrote: > without javascript ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users"

Re: Django documentation site is SLOW

2009-08-07 Thread Mirat Bayrak
without javascript ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users

Re: Django documentation site is SLOW

2009-08-07 Thread Léon Dignòn
I have an Intel C2D E2200 with 4 GB RAM. The Django docs are killing my browser, it feels like FireSLUG instead of Firefox 3.5 . Hate it! On Aug 7, 1:46 pm, Jo wrote: > Surely can't only be me that finds the main Django site painfully > slow? There is some javascript in there or something

Re: Django documentation site is SLOW

2009-08-07 Thread Mirat Bayrak
i am not expert but i thought that it can be about javascripts, can you disable javascript support and retry it? i think you have to try opera too --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group.

Django documentation site is SLOW

2009-08-07 Thread Jo
Surely can't only be me that finds the main Django site painfully slow? There is some javascript in there or something that just kills my browser. I'm using Firefox on Linux, on 1.5gig P4, OK not state of the art but it's fine for pretty much any other website, but when I try to look something up

Re: django documentation

2008-11-25 Thread Brian Neal
On Nov 25, 8:44 am, ReneMarxis <[EMAIL PROTECTED]> wrote: > Hello Brian > > i allready saw those hints on the djangoproject/djangobook homepage > and that was the reason i was writing this post. > Imagine i am new to django, i read "i have to add those lines to my > model and do some stuff on the

Re: django documentation

2008-11-25 Thread ReneMarxis
Hello Brian i allready saw those hints on the djangoproject/djangobook homepage and that was the reason i was writing this post. Imagine i am new to django, i read "i have to add those lines to my model and do some stuff on the setting.py file and run syncdb" then everything is ok and i can use g

Re: django documentation

2008-11-24 Thread Steve Phillips
I too was in your position. I am fairly new to Django and was getting very frustrated with the docs. They tell me to just do something and left it at that. I then went to the django docs on the djangoproject website and discovered that everything I needed was there. I was just searching the wrong

Re: django documentation

2008-11-24 Thread Brian Neal
On Nov 24, 5:18 pm, ReneMarxis <[EMAIL PROTECTED]> wrote: > hi > > as mentioned earlyer today i am very new to django and againe have > some question, this time reguarding the documentation. > > I started django by duing the tutorial, and now i started building my > own little project from ground

django documentation

2008-11-24 Thread ReneMarxis
hi as mentioned earlyer today i am very new to django and againe have some question, this time reguarding the documentation. I started django by duing the tutorial, and now i started building my own little project from ground up :) but i am lacking of information. I am missing some documentation

  1   2   >