Ideas for easier migration from South to Django 1.7+

2016-02-12 Thread Stefan Foulis
Hi everyone I'm looking for a way to do a semi-automatic migration of databases from Django 1.6 with South to Django 1.7+ migrations. We have thousands of sites, each using many re-usable apps with many migrations. I'm looking for a way to make this transition as painless as possible. I've not

Re: Announcing django user group switzerland

2012-10-28 Thread Stefan Foulis
ictures at http://goo.gl/ULrCz . Cheers Stefan On Tuesday, September 18, 2012 3:12:31 AM UTC+2, Stefan Foulis wrote: > > *Dear Djangonauts > > After the positive experiences at djangocon 2012 in Zürich, we’d like to > further strengthen the swiss django user community and therefore i

Re: Announcing django user group switzerland

2012-10-18 Thread Stefan Foulis
Join the first «Django User Group Switzerland Meetup» on Thurs, 25.10.2012! We still need speakers - could it be you? http://goo.gl/A04hM On Tuesday, September 18, 2012 3:12:31 AM UTC+2, Stefan Foulis wrote: > > *Dear Djangonauts > > After the positive experiences at djangocon 20

Announcing django user group switzerland

2012-09-17 Thread Stefan Foulis
over our meetup.com page ( http://www.meetup.com/Django-User-Group-Switzerland/). Cheers* * Stefan Foulis* -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/dj

Re: Multi-table Inheritance: How to add child to parent model?

2010-11-07 Thread Stefan Foulis
As far as I know there is no existing api to convert a 'Place' into a 'Restaurant' with multi-table inheritance in django. There is a ticket about this [1]. And in another ticket [2] that is marked as a duplicate but seems to have an example of how to solve this problem until there is a standard ap

Call for discussion: Loading js assets of widgets without clashing with others?

2010-04-18 Thread Stefan Foulis
Hi I hope to start a discussion to find a consistent way to include javascript frameworks for custom widgets. It should prevent clashes between the javascript dependencies. We'll need to find a best practice that developers can follow to allow re-usable widgets to coexist site-by-side. I'm using j

a simple API to SproutCore

2008-10-02 Thread Stefan Foulis
/django-sproutcore/ There is a short tutorial in the wiki. I'm looking forward to feedback. Please post bug reports and feature requests to the google code site. I hope you enjoy the app. --Stefan Foulis --~--~-~--~~~---~--~~ You received this message because yo

to_python ignored with custom IntegerField

2007-11-03 Thread Stefan Foulis [spiderware gmbh]
Hi I've tried to create a custom Field for the database to store Timedelta objects. Since I only need exactness to the minute and won't have any large timedeltas I'm using a simple Integer to store it in the database. Maybe I'll make this configurable later. this is the code: f

how to get a list of all installed applications

2007-05-20 Thread Stefan Foulis [spiderware gmbh]
I'm working on a little Navigation/Sitemap-ish application that will provide a way to define the sitemap similar to urls.py, but with way more options. based on that data the application will automatically create the necessary urlpatterns und provide a facility to make nice navigations inc

Re: Project organization and decoupling

2007-01-16 Thread Stefan Foulis
On Jan 16, 2007, at 17:52, David Abrahams wrote: For me, Django doesn't seem to be delivering on its promise to allow me to build a collection of apps and organize them in different combinations into multiple Django projects, and the documentation I can find doesn't really give any clues abou

Re: Show fields from foreign keys in Django admin

2007-01-16 Thread Stefan Foulis
I'm using Django's admin interface to view the fields of a table. One of these fields in a foreign key reference to another table named "Search". By default, Django's admin interface shows me "[Search Object]" in the foreign key column. I'd prefer to see some identifying information about the Se

Re: What svn (subversion) client do you use for OS X?

2007-01-11 Thread Stefan Foulis
I use eclipse with subclipse for svn and pydev for python support... everything nicely integrated and in one place. On Jan 11, 2007, at 06:57, Noah wrote: > > I recently switched to a mac and I've been keeping all of my projects > in subversion and I don't have a good GUI client. What do you >

Re: dividing up views.py into multiple files

2007-01-10 Thread Stefan Foulis
ectory you > created? > This file tells Python to treat the directory as a package and allow > traversal into the view file. > > NRY > > Stefan Foulis wrote: >> I searched around the django documentation and didn't find anything >> about this... >> >&

dividing up views.py into multiple files

2007-01-10 Thread Stefan Foulis
I searched around the django documentation and didn't find anything about this... what I'm trying to do is divide up the views.py file into multiple files because the single views.py file in some of my apps is getting very cluttered. I tried just making a views subdirectory and then placin

syncdb doesn't handle blank=True correctly?

2006-11-15 Thread Stefan Foulis
Hi Starting with a empty database and running syncdb does not set the fields in the resulting tables to allow NULL values on any fields (not even the ones with blank=True) on my installation. django correctly allows empty fields in the admin interface, but of course the db backend complains