Re: How do you manage your django sources?

2007-10-17 Thread Margaret
Using one repository , then one project one directory, I do this. On 10/17/07, Manoj Govindan <[EMAIL PROTECTED]> wrote: > > On Oct 17, 12:30 pm, Margaret <[EMAIL PROTECTED]> wrote: > > version control system??? > > or local filesystem?? > >

Re: How do you manage your django sources?

2007-10-17 Thread Margaret
version control system??? or local filesystem?? On 10/17/07, Manoj Govindan <[EMAIL PROTECTED]> wrote: > > How many here follow the django axiom of 'one project, multiple apps'? > If you do, how do you control the sources? Do you map one project to > one source code repository or do individual

Re: WordPress to Django Migration App

2007-08-31 Thread Margaret
If only admin the database of wordpress, why not using mysql admin tools, If use django, why not using django replace wordpress. I want to use django development a blog system base on wordpress database,UI. Maybe you like this way. On 8/31/07, ludo <[EMAIL PROTECTED]> wrote: > > On Aug 31, 8:56

Re: using chaining filter() and select_related()

2007-08-07 Thread Margaret
how employees = employees.join(employees.filter(Q(firstname = p) | Q(lastname= p))) On 8/8/07, james_027 <[EMAIL PROTECTED]> wrote: > > Hi, > > On Aug 8, 1:37 pm, Udi <[EMAIL PROTECTED]> wrote: > > Try doing the select_related() at the end > > > > Remove the first use of it and then after

Re: Question about {% url %}

2007-08-07 Thread Margaret
the question is r'^order_by_(?P-?(title|attachment|date))/(?P[0-9]+)/', regex error On 7/29/07, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > On Sun, 2007-07-29 at 06:55 +, ZhangshenPeng wrote: > > when you use url pattern [a-z]+ and named it , then use in {% url > > %} ,everything is

Re: Question about {% url %}

2007-08-07 Thread Margaret
anyone resolved this question??? On 7/29/07, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > On Sun, 2007-07-29 at 06:55 +, ZhangshenPeng wrote: > > when you use url pattern [a-z]+ and named it , then use in {% url > > %} ,everything is all right . > > when I change > > [a-z]+ > > into > >

Re: website template compatible with django

2007-08-01 Thread Margaret
--~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more

Re: Memcache

2007-06-23 Thread Margaret
Maybe you can use squid On 6/23/07, Grupo Django <[EMAIL PROTECTED]> wrote: > > Hello, I have set up a cache system, storing the cache data in disk. > I have a kind of static pages, that usually, it never change, but just > in case, I have set a cache for 12 hours. > If I change a page and I

Re: Latin-1 text from the database.

2007-06-03 Thread Margaret
using UTF8 replace the others On 6/3/07, Roger <[EMAIL PROTECTED]> wrote: > > Hi all, > I am pretty new to django, and am trying fix some code I inherited, so > far I have much success and have > been impressed with Django. > > I do have one problem I hope someone here can help me with. I have >

Re: phone

2007-05-29 Thread Margaret
what On 5/29/07, cs <[EMAIL PROTECTED]> wrote: > > look it > > 使用下一代的 MSN Messenger。 立即尝试! > > > > -- [EMAIL PROTECTED] 13585201588 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: geographical data in models

2007-05-16 Thread Margaret
django support GIS?? On 5/16/07, Ramiro Morales <[EMAIL PROTECTED]> wrote: > > On 5/16/07, omat <[EMAIL PROTECTED]> wrote: > > > > Hi all, > > > > I am developing an application with django that requires some > > geographical data, both some points and tracks. I have some questions > > regarding

Re: Pydev users: Undefined variable from import: objects

2007-05-16 Thread Margaret
Undefined from import:objects may you need to config your path. On 5/16/07, olive <[EMAIL PROTECTED]> wrote: > > Hi, > > this is a question for Pydev/Django users. > > Do you have this problem (see subject) ? > > Do you know how to solve it ? > > Thx, > > Olive. > > > > > -- [EMAIL PROTECTED]

Re: Automated testing using Client - how to test/assert the value of session objects

2007-02-08 Thread Margaret
would you like paste your code of "test"? On 2/9/07, Manoj Govindan <[EMAIL PROTECTED]> wrote: > > Hi, > I have written a small test making use of test.Client to simulate a > 'POST' request to a view. The target view is expected to set a certain > variable in the session on successful handling

Re: Debugging Django: print statements?

2007-01-22 Thread Margaret
yup, me too On 1/23/07, Vadim Macagon <[EMAIL PROTECTED]> wrote: > > Eclipse + PyDev is working out for me pretty well, PyDev has a graphical > debugger. > > rzimerman wrote: > > What's the best way to do debugging in Django? Usually when I program, > > I use "print" statements to identify

Re: django-admin.py

2006-12-21 Thread Margaret
aha, a really newbie ! On 12/22/06, Todd O'Bryan <[EMAIL PROTECTED]> wrote: On Thu, 2006-12-21 at 08:53 -0800, Wiston Guzman wrote: > [GCC 4.1.2 20060928 (prerelease) (Ubuntu 4.1.1-13ubuntu5)] on linux2 > Type "help", "copyright", "credits" or "license" for more information. > >>> import

Re: ViewDoesNotExist at /admin/

2006-12-20 Thread Margaret
yes, I saw your application. try to "chown" or "chmod" your django Directory [EMAIL PROTECTED] 13585201588 --~--~-~--~~~---~--~~ You received this message because you are

Re: ViewDoesNotExist at /admin/

2006-12-20 Thread Margaret
settings.py does you add this 'django.contrib.admin', INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.admin', ) === On 12/21/06,