I fould this article.
http://jjinux.blogspot.com/2006/02/python-django-palooza.html
--
I like python!
My Blog: http://www.donews.net/limodou
NewEdit Maillist: http://groups.google.com/group/NewEdit
--~--~-~--~~~---~--~~
You received this message because you are s
I'm inclined to agree with Ian on this. I've had very bad experiences
with the Rails version of schema migrations, and having to restore db
backups, then try them over and over when screw-ups happen (which ALTER
statements always seem to cause when attempted in a cross-db way).
Despite how many p
On Mon, 2006-02-27 at 19:26 -0800, Jacob Kaplan-Moss wrote:
> Hey folks --
>
> I've posted (over 1200 words of) my thoughts on schema evolution to the
> wiki: http://code.djangoproject.com/wiki/SchemaEvolution.
>
> Any thoughts before I start on this?
Looks good. The only part that raised a few
my only suggestion that I don't see in the wiki is to create a backup
version of the table(s) before you attempt any DDL transactions.
you could then you the 'insert INTO .. select ...' syntax to do your
conversions.
that way you keep all your old data if/when u screw up.
this should be OK for mos
Jacob Kaplan-Moss wrote:
> Hey folks --
>
> I've posted (over 1200 words of) my thoughts on schema evolution to the
> wiki: http://code.djangoproject.com/wiki/SchemaEvolution.
>
> Any thoughts before I start on this?
>
> Jacob
I'm not sure exactly what reparations you're thinking will be possible
On 2/27/06, Jacob Kaplan-Moss <[EMAIL PROTECTED]> wrote:
Any thoughts before I start on this?I'm definitely +1 on this. The flexibility of using SQL or Python for migration lets people use the tools that they are most familiar/comfortable with. While I think that anyone with "real" data to worry
Hey folks --
I've posted (over 1200 words of) my thoughts on schema evolution to the
wiki: http://code.djangoproject.com/wiki/SchemaEvolution.
Any thoughts before I start on this?
Jacob
--~--~-~--~~~---~--~~
You received this message because you are subscribed
Adrian Holovaty wrote:
> Yes, I realize __name__ + '.views' will result in something like
> 'myproject.polls.urls.views' -- some extra string mangling would have
> to be done.
how about using the python 2.5 relative import syntax and emulating it
accoringly.
urlpatterns = patterns('.views',
fo
On 2/26/06, gabor <[EMAIL PROTECTED]> wrote:
> the urlconf for the polls app is:
>
> urlpatterns = patterns('myproject.polls.views',
> (r'^$', 'index'),
> (r'^(?P\d+)/$', 'detail'),
> (r'^(?P\d+)/results/$', 'results'),
> (r'^(?P\d+)/vote/$', 'vote'),
> )
>
> it is nice that th
On 2/27/06, Ivan Sagalaev <[EMAIL PROTECTED]> wrote:
> I'm starting to build an application where I need to output large files
> to the user in chunks to control download speed and to know if the
> download has succeeded. Django's HttpResponse object treats response as
> a single string in memory
Ivan Sagalaev wrote:
> I still care very much for Postgres thread-safety ticket (#900). Seeing
> that Eugene will cover MySQL patches I wonder if it's Postgres cousin is
> on the list too?
Yes. I'll try to cover all related tickets.
Thanks,
Eugene
--~--~-~--~~~--
If you are terribly interested in multiple auth backends, check out
http://code.djangoproject.com/wiki/MultipleAuthBackends It's pretty
abstract, but it WILL take care of the use case where you want people
to log in with an email address. (That's for brian if he's still
hanging around in django-la
I'm starting to build an application where I need to output large files
to the user in chunks to control download speed and to know if the
download has succeeded. Django's HttpResponse object treats response as
a single string in memory and doesn't allow such things. I plan to
modify it to be
On 2/27/06, Russell Keith-Magee <[EMAIL PROTECTED]> wrote:
>
> On 2/27/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote:
> >
> > This sounds great to me. Go for it!
>
> Ok - I've just committed these changes (r2409).
I added a ticket for this:
http://code.djangoproject.com/ticket/1407
and am adding
On 2/27/06, Luke Plant <[EMAIL PROTECTED]> wrote:
>
> How hard would it be to add the 'remove()' method but only for
> foreign key relationships that can be null?
That should be possible - I'll see what I can do.
Russ Magee %-)
--~--~-~--~~~---~--~~
You received
On 2/27/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote:
>
> This sounds great to me. Go for it!
Ok - I've just committed these changes (r2409).
As a result of this commit, there is one more unit test failing - in
the many_to_one test, accessing new_article2.reporter.id seems to be
getting a stale
I'm trying to create i18n aware Char and Text fields for m-r branch but I can't
figure out how to create additional
tables from field definition (something like M2M field does).
Basically I need something like this:
class Foo(models.Model):
bar = I18NCharField(...)
to create Foo model
> i have an Html form that calls php page and its functionality is to
> send
> an email and i need to accesss from the django framework
> i am wondering should i write something in the url.py i really don't
> know and i need the functionality of the PHP page to work properly
How hard would it b
Jacob Kaplan-Moss wrote:
>You can find those topics and notes from our meeting today
>at http://code.djangoproject.com/wiki/PyConSprint06.
>
>
What counts as "crash-level bugs" and "outstanding patches"?
I still care very much for Postgres thread-safety ticket (#900). Seeing
that Eugene will c
Russell Keith-Magee wrote:
> - rename add() for o2m descriptors to something else, to remove the
> implication that there should be a corresponding remove() and clear()
> method. However, I can't think of a reasonable alternative.
I like your suggestions, but like you I'm not entirely convinced
i have an Html form that calls php page and its functionality is to send
an email and i need to accesss from the django framework
i am wondering should i write something in the url.py i really don't
know and i need the functionality of the PHP page to work properly
Thanks,
Mary
--~--~---
On Mon, 2006-02-27 at 02:15 -0600, Jeremy Dunck wrote:
> On 2/27/06, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote:
> ...
> > On other Open Source projects I've worked on, there has been a way to
> > indicate in the bug tracking system that a patch was attached to a
> > report. Either by adding [pa
On 2/27/06, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote:
...
> On other Open Source projects I've worked on, there has been a way to
> indicate in the bug tracking system that a patch was attached to a
> report. Either by adding [patch] to the title or setting a "patch"
> keyword or something sim
On Sun, 2006-02-26 at 20:21 -0800, Jacob Kaplan-Moss wrote:
> Howdy folks --
>
> Four days of PyCon sprints start tomorrow! A bunch of us here at PyCon
> met this afternoon to plan out what we'll be working on over these next
> four days. You can find those topics and notes from our meeting toda
24 matches
Mail list logo