On Feb 8, 3:30 pm, Karen McNeil <karenlmcn...@gmail.com> wrote:
> I have three Django sites that I've been working on recently and I've
> been doing most of the development work in Dreamweaver.  I don't use
> any of the wysiwyg features (or, pretty much, any of the Dreamweaver
> program features), but I like it because I can do all the the code
> edits and the FTP transfers all in one program.  I like being able to
> grab a remote file, make some code changes, save and upload all at
> once, and view a nice graphical display of the file structure for the
> local and remote sites.
>
> Problem is, Dreamweaver's code view is definitely not built for
> Python, and it doesn't look like they have any plans to support it any
> time in the foreseeable future.  Which means that I get no color-
> coding of the code, and I'm constantly getting indentation errors.
>
> I've always had Dreamweaver on my computer (a Mac) and so have never
> used a separate FTP program, and the only IDE I've ever used is IDLE.
> I used IDLE when I was first learning Python, but now that I'm working
> with the websites, I find it much more convenient to just open the
> files from within DW.  Does anyone know of another, Python-friendly,
> program that I could use for both code-editing and ftp?
>
> Thanks,
> Karen

I recommend Gvim, although it takes time to configure and tune
it. As for uploading, simply run a devserver locally and then after
a few days (or a week) of work, upload everything in bulk, perhaps
using a version control system. Basic use of version control is
actually
very easy to pick up and the nice bonus is that you can clean up
code as needed, deleting parts that you don't use anymore, without
fear of losing them: you can always go back in history and retrieve
it. This leads to cleaner code IME.

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to