Re: Django Resuable App Installation on Windows Virtualenv

2013-06-09 Thread Ji Park
I've heard great things about Django, but I've never really looked into it until now. I'm beginning to see how powerful yet simple it is. Thanks! On Sunday, June 9, 2013 4:27:08 PM UTC-7, Russell Keith-Magee wrote: > > > On Sun, Jun 9, 2013 at 4:04 PM, Ji H Park >wrote: > >> After going through

Re: Django Resuable App Installation on Windows Virtualenv

2013-06-09 Thread Russell Keith-Magee
On Sun, Jun 9, 2013 at 4:04 PM, Ji H Park wrote: > After going through the basic tutorials on django 1.5, I went on to the > advanced tutorial on how to create reusable apps. > > My OS is windows7 and I'm using virtualenv to create the virtual > environments. I keep all the virtual environments f

Is here Ella cms (based on Django) users?

2013-06-09 Thread Павел К
i have some newbie questions ^^ -- 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+unsubscr...@googlegroups.com. To post to this group, send email to d

RE: Django Tagging: no module named tagging, locally win7

2013-06-09 Thread Babatunde Akinyanmi
Did you add 'tagging' to your installed apps? Sent from my Windows Phone -- From: Lu Sheng Sent: 6/9/2013 9:43 PM To: django-users@googlegroups.com Subject: Django Tagging: no module named tagging, locally win7 My boss want me to handle a Django web-site. I install Dja

Re: How send data to UpdateView from javascript. (Django 1.5)

2013-06-09 Thread Ariel V. R.
I know the solution, this appear in the django documentation, but no resolv my problem. I redefine "dispatch" function in Django 1.4.X, class MatterUpdateView( UpdateView ): template_name = 'object_add.html' success_url = '/manage_p1/list/' model = Matter form_class = MatterForm

Django Tagging: no module named tagging, locally win7

2013-06-09 Thread Lu Sheng
My boss want me to handle a Django web-site. I install Django django-tagging Mysql-python via pip command. I can get: Python 2.7.5 (default, May 15 2013, 22:44:16) [MSC v.1500 64 bit (AMD64)] on win 32 Type "help", "copyright", "credits" or "license" for more information. >>> import tagging >>> t

Re: Is the django coummity converging on a preferred REST API package?

2013-06-09 Thread Raymond
Hi John, Do you have any thoughts as a result of your investigation. I too found all three mentioned above was looking into them before coming upon your thread. Thanks. On Saturday, 7 January 2012 08:47:44 UTC-8, JohnA wrote: > > Thanks for the comments. The developer-friendly features of Dj

Re: Migrating data/app/project to a new location and, if possible, version

2013-06-09 Thread Aaron C. de Bruyn
You might look into using MySQL Workbench to migrate the data to another MySQL server, then move the code to the new server. Look here for help with anything that might break: https://docs.djangoproject.com/en/1.5/releases/ Anything that has you stumped, post here and the community can help! -A

Re: Migrating data/app/project to a new location and, if possible, version

2013-06-09 Thread Avraham Serour
you can try using some kind of mysql export/import or django's manage.py dumpdata/loaddata and see of anything breaks On Sun, Jun 9, 2013 at 2:03 PM, wrote: > Hi, sysadmin here, > I am left with a django installation on a windows 2003 server that needs > to be demoted. The installation is djang

Migrating data/app/project to a new location and, if possible, version

2013-06-09 Thread boian . soloviov
Hi, sysadmin here, I am left with a django installation on a windows 2003 server that needs to be demoted. The installation is django (1, 2, 1, 'final', 0) on python 2.6.4 and a MySQL 5.1.46-community version. The platform is holding two custom/proprietary apps/projects. I would either worst-cas

Django Resuable App Installation on Windows Virtualenv

2013-06-09 Thread Ji H Park
After going through the basic tutorials on django 1.5, I went on to the advanced tutorial on how to create reusable apps. My OS is windows7 and I'm using virtualenv to create the virtual environments. I keep all the virtual environments for django in: C:\Users\light\django-projects In the djan

Django Tagging: no module named tagging, locally win7

2013-06-09 Thread Lu Sheng
I just take other one coded django web-site. I install Django, Mysql-python and django-tagging via pip. But still when I try to run the django web-site on my win7 laptop, I get error: F:\sydney\main>python manage.py syncdb ImportError: No module named tagging F:\sydney\main>python manage.py she

Re: Django foreing keys joins

2013-06-09 Thread akaariai
On 6 kesä, 02:05, Àlex Pérez wrote: > Can someone tell me why the or in that query: > print Counter.on_medicos.filter(loc__isnull=True).only("id").query > > ""SELECT `web_counter`.`id` FROM `web_counter` LEFT OUTER JOIN > `locations_localidad` ON (`web_counter`.`loc` = `locations_localidad`.`id`)