Django-grappelli issue
I discovered the grappelli app today and just set up it. However, the admin site doesn't look as good as the screenshot from the site. Here is the screenshot of my admin page http://i979.photobucket.com/albums/ae280/jasonvoorheeszzz/Capture.png It looks like that on FF 3.5.9 and even worse on IE 8. Does anyone have the same issue ? -- 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 unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
Re: Django-grappelli issue
It works. Thank you very much. On Mon, May 3, 2010 at 2:21 AM, Scot Hacker wrote: > On May 1, 10:12 pm, Tran Cao Thai wrote: > > I discovered the grappelli app today and just set up it. However, the > admin > > site doesn't look as good as the screenshot from the site. Here is the > > screenshot of my admin page > > > > http://i979.photobucket.com/albums/ae280/jasonvoorheeszzz/Capture.png > > > > This is what happens to Grappelli when you set your media directory > correctly (the CSS is being found) but you haven't yet added the > Grappelli templates directory to your TEMPLATES tuple in settings. > > ./s > > -- > 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 unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- 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 unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
Re: About raw sql query
but it is only a simple query, why don't you use the query api (aggregate function...) On Fri, Jun 25, 2010 at 12:22 AM, Tom Evans wrote: > On Thu, Jun 24, 2010 at 3:02 PM, Jakir71 wrote: > > I will need the largest id of table infantregistration.I used raw() > > method such as InfantRegistration.objects.raw('SELECT Max(id) FROM > > infantregistration'). > > > > It returns the error :'Manager' object has no attribute 'raw'. > > > > what can i do now??? > > > > http://docs.djangoproject.com/en/1.2/topics/db/sql/#performing-raw-queries > > Are you running django 1.2? > > Cheers > > Tom > > -- > 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 unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- 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 unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
ModelChoiceField
Hi all, is there any way to use the ModelChoiceField without any value in it? I tried to set query = None but it gave an error while rendering the html page -- 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 unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
Re: ModelChoiceField
Thank you very much. I missed that part in the documentation On Fri, Jun 25, 2010 at 4:54 PM, Oleg Lomaka wrote: > On 6/25/10 8:25 AM, Tran Cao Thai wrote: > >> is there any way to use the ModelChoiceField without any value in it? I >> tried to set query = None but it gave an error while rendering the html page >> > > Use EmptyQuerySet. > field = ModelChoiceField(queryset=YouMode.objects.none()) > > http://docs.djangoproject.com/en/1.2/ref/models/querysets/#none > > -- > 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 unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- 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 unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
Re: PyConAU2010
What a pity! i live in Melbourne :((. Hope that i can join it some day On Sun, 2010-06-27 at 12:43 +1000, Peter Williams wrote: > Hi all > > PyConAu 2010, currently in progress in Sydney, Australia, is proving > very successful and informative. There have been several excellent > speakers with topics on Django, not to mention all of the Python talks. > The 200 or so attendees and presenters are from all walks of life, age > groups etc. Fortunately, I live within easy travelling distance from > Sydney, and conferences like this are amongst my few opportunities for > professional development. They boost my enthusiasm for the technologies > which allow my organisation to develop systems, for staff and external > stakeholders, efficiently and cost effectively. I would like to > congratulate the organising committee of this first PyConAu for doing a > wonderful job. > > Thanks. > > Peter > > Peter J Williams > Information Manager > NSW Rural Doctors Network > Head Office > Suite 19, Level 3 > 133 King Street > Newcastle NSW 2300 > Telephone: (02) 4924-8000 > Facsimile: (02) 4924-8010 > Mailto:pwilli...@nswrdn.com.au > Web: http://www.nswrdn.com.au > > > plain text document attachment (disclaimer.txt) > Disclaimer: This email, including the attachments, is intended for the > addressee named and may contain confidential information. If you are not the > intended recipient, please notify us by return email and then delete this > email and your reply. Views expressed in this message are those of the > individual sender, and are not necessarily the views of NSW Rural Doctors > Network. -- 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 unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
ModelChoiceField
hi all, i am trying to write auto populated select box by using jquery and ModelChoiceField. I have 2 variables cates and subcates, the first one take all the objects from the Category model, the second takes None object (Subcategory.objects.none ()). at first the html rendering is fine. When i select the cates box, it will connect with the server (by using ajax) and populate the subcates box (jquery code will change the tag in the subcates box and replace with the new data retrieved from the server) and everything is all right. However, when i press submit, i get the error "Select a valid choice. That choice is not one of the available choices." is it because i changed the value of the subcates box in the client side without notifying back to server. Can you suggest any solution for this ? -- 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 unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
Re: Django IDE
find them, use them and you will know the best On Sun, Jul 18, 2010 at 1:53 AM, Jitendra Joshi wrote: > What is the best open source Django IDE ? > > -- > 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 unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- 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 unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
Re: Django IDE
eclipse + pydev is terrible when running on Linux IMO. Everytime starting the server, cpu runs like a horse without any reason. For me, gedit is the best. It is light, fast and have appearance support,powerful snippet plugin, and multi tab terminal integration. What else do you expect more to code python / django? On Mon, Jul 19, 2010 at 5:50 AM, bedros <2bed...@gmail.com> wrote: > I use komodo edit > > openkomodo.com > > Komodo Edit is free, but Komodo IDE is commercial > > > > On Jul 18, 11:22 am, Subhranath Chunder wrote: > > Obviously it's the user personal choice, always! :) > > > > Thanks, > > Subhranath Chunder. > > > > On Sun, Jul 18, 2010 at 11:45 PM, Roald de Vries > wrote: > > > > > On Jul 18, 2010, at 7:19 PM, Biju Varghese wrote: > > > > >> Eclipse is the best IDE for python and django. > > > > >> On Jul 17, 8:53 pm, Jitendra Joshi > wrote: > > > > >>> What is the best open source Django IDE ? > > > > > I would say VIM, too. Emacs should be very good too, but I've never > used > > > it. Their advantage: > > > 1) you can use them from the command line, so over SSH too, and they > (at > > > least VI) are available everywhere > > > 2) they're so wide spread that there's a plug-in for almost everything > > > 3) they're so configurable that you can write a plug-in to do anything > you > > > want > > > 4) learn once, use for anything > > > > > Admitted, there are disadvantages: they have a learning curve, > expecially > > > VIM, but once you know how to use them, they increase your productivity > a > > > lot. > > > > > Features: > > > - autocompletion > > > - very very very strong search and replace > > > - macro's > > > - configurable key bindings/commands > > > > > Comparison of VIM and Emacs (what I've read): > > > - Emacs is monolithic (does everything, for example includes shell), > VIM is > > > unix style (does one thing well, why reproduce the shell?) > > > - The unix cli uses Emacs key bindings (but VI bindings are optional) > > > - Emacs doesn't have different (confusing) modes, VIM doesn't leave you > > > with a crippled little finger (from all the 's) > > > - VIM has more commands than Emacs > > > > > I would say Emacs makes you more productive on shorter term, VIM makes > you > > > more productive on longer term. > > > > > Cheers, Roald > > > > > -- > > > 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 unsubscribe from this group, send email to > > > django-users+unsubscr...@googlegroups.com > > > > > > . > > > For more options, visit this group at > > >http://groups.google.com/group/django-users?hl=en. > > -- > 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 unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- 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 unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
Re: Recommend a book
Learning Website Development with Django: A be (ginner's tutorial to building web applications, quickly and cleanly, with the Django application framework ( *ISBN-13:* 978-1847193353) The only one django book that i like. Give the reader a comprehensive look for django framework (though it is about django 0.9) and doen't not cover boring projects like creating a blog (which u can easily find from the django website). There is a ebook version as well. I also found that the django channel on irc is extremely useful for those who want to learn django. People there are very nice and friendly On Fri, Sep 24, 2010 at 11:57 AM, Tim Johnson wrote: > FYI: I'm an experienced python programmer, experienced web > programmer, work mostly on linux platforms. And I like to > start slow and get it down thoroughly. > > I'm soliciting recommendations for books on learning django. > E-book or paper. Paper is preferred. > > I would prefer to avoid anything geared to a particular IDE. > (I roll my own with either vim or emacs) > > TIA > -- > Tim > tim at johnsons-web.com or akwebsoft.com > http://www.akwebsoft.com > > -- > 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 unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- 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 unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
Universal form
Hello all, I have a login form that should appear in every pages of the site. How can i create it from the views file ? Since every form is triggered by calling a function in the views file, do i have to create the form in every function? -- 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 unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
Re: Universal form
a little bit search ends up with django-annoying. Is there anyone using it ? which one is better ? On Sat, Sep 25, 2010 at 1:25 AM, Shawn Milochik wrote: > Context processors will do this for you. > > > http://docs.djangoproject.com/en/dev/ref/templates/api/#writing-your-own-context-processors > > -- > 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 unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > -- 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 unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
Re: Universal form
isn't it unnatural to force user go around the site before going to the right place? Anyway, i will go around with all the ways first before making decision Thanks everybody On Sat, Sep 25, 2010 at 1:30 AM, Nick Arnett wrote: > I was tackling this problem recently and found several approaches by > searching for Django login form. I ended up using a middleware solution > that brings up a login page no matter where the user tries to go, then > redirects them to the page they were trying to view... but that only makes > sense if your users aren't allowed to see any page without logging in. > > See > http://www.mail-archive.com/django-develop...@googlegroups.com/msg06473.html > > <http://www.mail-archive.com/django-develop...@googlegroups.com/msg06473.html> > Nick > > On Fri, Sep 24, 2010 at 8:23 AM, Tran Cao Thai > wrote: > >> Hello all, >> >> I have a login form that should appear in every pages of the site. How can >> i create it from the views file ? Since every form is triggered by calling a >> function in the views file, do i have to create the form in every function? >> >> -- >> 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 unsubscribe from this group, send email to >> django-users+unsubscr...@googlegroups.com >> . >> For more options, visit this group at >> http://groups.google.com/group/django-users?hl=en. >> > > -- > 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 unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > -- 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 unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
Re: Vim for Python and Django
@flebber: try this http://tortoisehg.bitbucket.org/ On Mon, Sep 27, 2010 at 9:28 AM, Mathieu Leduc-Hamel wrote: > Anybody know of there's the same kind of resources for emacs ? > > On Sun, Sep 26, 2010 at 7:22 PM, flebber wrote: >> Do the instructions here http://code.google.com/p/trespams-vim/wiki/readme >> only work on linux ? I tried to follow it on Windows as i wanted to >> download and try your version but received this error. >> >> C:\>hg clone https://trespams-vim.googlecode.com/hg/ trespams-vim >> 'hg' is not recognized as an internal or external command, >> operable program or batch file. >> >> C:\> >> >> >> On Sep 27, 2:55 am, ionut cristian cucu wrote: >>> Very helpful, thanks alot! >>> >>> 2010/9/26 Piotr Zalewa : >>> >>> > Hi Antoni, >>> >>> > Thanks for that! >>> >>> > zalun >>> >>> > On 09/26/10 10:36, Antoni Aloy wrote: >>> >> Hello all! >>> >>> >> In this list we have a recurrent thread: "What'ts the best IDE for >>> >> Django and Python development?" trespams-vim is my try to answer this >>> >> question for people who likes to have a very powerful editor and needs >>> >> to have an editor which is able to run in the desktop as well as in a >>> >> remote session. I have updated the previous version with delimMate and >>> >> easytags, so actually you'll find: >>> >>> >> * Syntax highlight >>> >> * Python autocompletion >>> >> * Smart tabbing >>> >> * Templates for Python, Django, js, html, ... (just try to edit a >>> >> python file and press sbu + tab as an example) >>> >> * Add/remove comments on multiple lines >>> >> * Tabs >>> >> * Surround >>> >> * marks >>> >>> >> etc. etc. : >>> >>> >> This is a list of my favorite shortcuts >>> >>> >>http://code.google.com/p/trespams-vim/wiki/readme >>> >>> >> So, you'll find a collection of plugins and .vimrc settings that I >>> >> have found very useful in my day-by-day work in Python and Django. >>> >>> >>http://code.google.com/p/trespams-vim/ >>> >>> >> Happy coding! >>> >>> > -- >>> > blog http://piotr.zalewa.info >>> > jobs http://webdev.zalewa.info >>> > twit http://twitter.com/zalun >>> > face http://facebook.com/zaloon >>> >>> > -- >>> > 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 unsubscribe from this group, send email to >>> > django-users+unsubscr...@googlegroups.com. >>> > For more options, visit this group >>> > athttp://groups.google.com/group/django-users?hl=en. >> >> -- >> 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 unsubscribe from this group, send email to >> django-users+unsubscr...@googlegroups.com. >> For more options, visit this group at >> http://groups.google.com/group/django-users?hl=en. >> >> > > > > -- > Mathieu Leduc-Hamel > > -- > 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 unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- 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 unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
Re: admin site not working, problem with urls.py?
hope this helps : http://botland.oebfare.com/logger/django/2009/2/14/15/ The conversation is very funny also :D On Wed, Oct 6, 2010 at 9:01 AM, Lisa wrote: > Hi all, > I'm sure I have a pretty simple problem... > here's my url.py file > > from django.conf.urls.defaults import * > > # Uncomment the next two lines to enable the admin: > from django.contrib import admin > admin.autodiscover() > > urlpatterns = patterns('', > # Example: > # (r'^ccu/', include('ccu.foo.urls')), > > # Uncomment the admin/doc line below and add > 'django.contrib.admindocs' > # to INSTALLED_APPS to enable admin documentation: > # (r'^admin/doc/', include('django.contrib.admindocs.urls')), > > # Uncomment the next line to enable the admin: > (r'^stories/$','ccu_gen.views.all_stories'), > (r'^stories/(?P\d+)/$', 'ccu_gen.views.one_story'), > (r'^admin/', include(admin.site.urls)), > > ) > > stories works fine, but for the admin url, I'm getting the error > __import__() argument 1 must be string, not instancemethod > > any ideas? > > Thanks! > > -- > 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 unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- 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 unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
Re: Users table
http://www.lightbird.net/dbe/index.html Very good for beginners On Mon, Oct 25, 2010 at 8:53 AM, Miguel Araujo wrote: > Hi, > Django has a built in User model, If you put in your INSTALLED_APPS > 'django.contrib.auth' you will activate Django's built-in user management > app. Then if you want to have registration, I recommend you look at > django-registration by James Bennett: > http://bitbucket.org/ubernostrum/django-registration/ > > Regards, > Miguel Araujo > > 2010/10/24 miksayer >> >> Hello! I'm newbie in Django. And I have few questions. For learning >> Django I decided to develop simple todo-service(where you can note >> your current deals). >> I started new project "todo" and immediately I have a question. Where >> can I put users table model? Must I create new application and put it >> there in models.py? >> I don't ask 'how can I do it?', I ask 'how must I do it?'(i.e. 'how >> to?'). >> P.S. sorry for my bad English. >> >> -- >> 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 unsubscribe from this group, send email to >> django-users+unsubscr...@googlegroups.com. >> For more options, visit this group at >> http://groups.google.com/group/django-users?hl=en. >> > > -- > 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 unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > -- 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 unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
Re: Send and Receive SMS from a django app
Wow, there is an answer after 2 mins. This community really rocks :D On Wed, Jan 13, 2010 at 8:55 PM, Daniel Hilton wrote: > > http://www.rapidsms.org/ > > > 2010/1/13 Alessandro Ronchi : >> Is it possible with linux and django to send and receive data from SMS from >> a django APP? Did anyone managed to do that? >> >> -- >> Alessandro Ronchi >> >> http://www.soasi.com >> SOASI - Sviluppo Software e Sistemi Open Source >> >> http://hobbygiochi.com >> Hobby & Giochi, l'e-commerce del divertimento >> >> -- >> 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 unsubscribe from this group, send email to >> django-users+unsubscr...@googlegroups.com. >> For more options, visit this group at >> http://groups.google.com/group/django-users?hl=en. >> >> > > > > -- > Dan Hilton > > www.twitter.com/danhilton > www.DanHilton.co.uk > > > -- > 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 unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > > > -- 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 unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
Re: django and webcams
opencv ? On Sun, Jan 24, 2010 at 5:59 AM, H.İbrahim Yılmaz wrote: > Hi, > I'm looking for a method to use my webcam for take a photo in my > project. What is the best solution for that? > Thanks > > -- > http://www.arkeoloji.web.tr > > -- > 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 unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- 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 unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
Re: Django IDE
i used to use wingware for a while. It 's cool, fast but not free (i used the trial version). Stick with Eclipse + pydev for a while also. IMO, it 's the best, however, eclipse is always slow (because it 's a java application), and don't have the integrated terminal ( i know that there are some plugins for the terminal but don't want to spend much time on that). Currently, i go back to my favourite one: Geany which doesn't have many plugins but very fast and free also On Mon, Feb 15, 2010 at 10:46 PM, bruno desthuilliers < bruno.desthuilli...@gmail.com> wrote: > On Feb 15, 11:18 am, rebus_ wrote: > (snip) > > But as Bruno pointed out, any decent code editor will do, just a > > matter of preference. > > Well, the point is that Django is about web programming, which usually > imply using quite a few languages - html + whatever template system, > javascript, css, quite often bits of SQL, the usual config-file > formats, probably some shell scripting here and there, and (of course) > a server-side language - in this case Python, but as far as I'm > concerned (and I bet most web programmers will have this pattern) I > often have to deal with PHP or other scripting languages. Also and > FWIW, I also have to maintain Python apps based on other frameworks > (mostly Zope/Plone to my regret). Not talking about the bits and > pieces of C or other lower level languages... > > Having to learn a distinct "IDE" for each and any possible text > format / language / framework / combination of... would be rather > tedious. I find it better to master one good code editor that handle > them all. My editor of choice happens to be Emacs, but there's no > shortage of good code editors to choose from. > > My 2 cents... > > -- > 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 unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- 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 unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.