Dropbox with Django

2011-12-17 Thread matty
I wrote a small app to track my comic collection and I just use the development server and admin interface to access it when I want. I was thinking of dropping the entire project into dropbox and using it to sync so that I can access the db on any of my computers using the development server. I

Re: Gallery plugin

2011-12-17 Thread zzeus
Imagestore? http://pypi.python.org/pypi/imagestore On 17 дек, 21:01, Lexa Po wrote: > Hello, > > I am looking for an any plugin for the DjangoCMS that will provide Gallery. > Any suggestions with *good documentation and quick start tutorial*? -- You received this message

Re: Website Documentation Search broken?

2011-12-17 Thread Jacob Kaplan-Moss
On Sat, Dec 17, 2011 at 12:30 AM, kenneth gonsalves wrote: > thanks for the info - the search *has* improved, for example a search > for get_FOO_display used to fail, it now succeeds. But I still need > ddg's site search for multiword searches. Can you be a bit more

Re: Creating websites like Amazon/Ebay using Django

2011-12-17 Thread Jisson Varghese
well Django is suitable for web application development. Django uses Python for serverside Mysql is a good choice as Database.In a web app database stores user credentials,sessions,and items,its price(in your case). I suggest SQlalchemy (ORM). first try with djnago orm (models),then shift to

Gallery plugin

2011-12-17 Thread Lexa Po
Hello, I am looking for an any plugin for the DjangoCMS that will provide Gallery. Any suggestions with *good documentation and quick start tutorial*? -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit

Re: Problem re-creating SQLite database with manage.py...

2011-12-17 Thread Ramiro Morales
On Fri, Dec 16, 2011 at 5:44 PM, J. Marc Edwards wrote: > > # sqlite database for testing > DATABASES = { >     'default': { >     'ENGINE': 'django.db.backends.sqlite3', >     'NAME': os.path.join(PROJDIR, 'db.sqlite'), >     } > } > >

Re: Problem re-creating SQLite database with manage.py...

2011-12-17 Thread eldo
may be you shold change the settings become like this one in settings.py file == DATABASES = { 'default': { 'ENGINE': 'sqlite3', <-- change it to sqlite3 'NAME': '/home/[linux_user]/[django_project]/[database_name].db', <- change the value to your project location

Re: GMail/Hotmail style checkbox drag-and-drop for Satchmo product groups

2011-12-17 Thread Richard Shebora
You may want to check out the category / product selection method in the project at http://getlfs.com/ . They have some very good ideas on custom user interfaces. You can quickly select categories visually from the products point of view, or select products from a list from the category's point