Re: How about a Django apps public repository?

2006-09-30 Thread Kenneth Gonsalves
On 01-Oct-06, at 9:08 AM, Sean Schertell wrote: > I'm the guy that started this thread and had pledged to take the lead > on this. Ironically, I'm also the guy who started the recent thread > "Why I'm giving up on Django". So for now, it looks like I'll be > taking an indefinite hiatus from Djan

Re: tutorials

2006-09-30 Thread [EMAIL PROTECTED]
Not sure if I should get this from the tutorials but a piece on getting other peoples code up and running would be nice. Especially from a Windows (WAMP) perspective! I am trying to run Jeff Crofts Lost-Theories website but I am running into errors etc probably because I am not doing things in th

Re: How about a Django apps public repository?

2006-09-30 Thread Sean Schertell
Hi, I'm the guy that started this thread and had pledged to take the lead on this. Ironically, I'm also the guy who started the recent thread "Why I'm giving up on Django". So for now, it looks like I'll be taking an indefinite hiatus from Django dev. If someone wants to take this idea and

Re: Django Forums

2006-09-30 Thread Kenneth Gonsalves
On 30-Sep-06, at 11:46 PM, Cerberus wrote: > I understand what you mean about splitting the community, but I put > them up incase others wanted to have a set of forums, Google groups > seems pretty good, Im still a n00b to this format though. I guess im > just more used to using forums for suppo

Re: How about a Django apps public repository?

2006-09-30 Thread Marc Fargas
Uhm.. I was waitting for Ian Holsman who said had something on pending of some 'styling', if no body is on it I can take over it ;) Cheers, Marc. On 9/30/06, Steven Armstrong <[EMAIL PROTECTED]> wrote: > > On 09/30/06 17:35, Lucas Vogelsang wrote: > > Hi, > > Is this project/thread dead or is so

Re: tutorials

2006-09-30 Thread John Sutherland
On 1 Oct 2006, at 01:08, Malcolm Tredinnick wrote: > > On Sat, 2006-09-30 at 23:10 +0200, Onno Timmerman wrote: >> Hi, >> >> Its not easy when you first learn Django. You just start to get some >> grasps with it when you do the tutorials but the tutorials stop >> after 4 >> pages. Any idea whe

Re: tutorials

2006-09-30 Thread Malcolm Tredinnick
On Sat, 2006-09-30 at 23:10 +0200, Onno Timmerman wrote: > Hi, > > Its not easy when you first learn Django. You just start to get some > grasps with it when you do the tutorials but the tutorials stop after 4 > pages. Any idea when the rest will follow? To the best of my knowledge, there are

Re: problem to solving URL

2006-09-30 Thread Malcolm Tredinnick
On Sat, 2006-09-30 at 19:18 +0400, Ivan Sagalaev wrote: > Marco Amato wrote: > > and URL.py > > > > ### > > from django.conf.urls.defaults import * > > > > urlpatterns = patterns('', > > # Example: > > (r'^base/$', include('test.selecto.views')), > > > > # Uncomment this fo

Re: Re: . Dates get a "Today" shortcut and calendar popup, and times get a "Now" shortcut and a convenient popup

2006-09-30 Thread James Bennett
On 9/30/06, anil <[EMAIL PROTECTED]> wrote: > i was more looking for a simple way of using it > thanks a lot It's a JavaScript file... read through it to see what sort of HTML it expects to work with, and tailor a page to suit. -- "May the forces of evil become confused on the way to your house

Re: URL config, patterns

2006-09-30 Thread Ivan Sagalaev
Ice9 wrote: > In my app1/urls.py I have something like: > > urlpatterns = patterns('probob.app1.views', > (r'^$', 'index'), > (r'^test/', 'XXX'), > ) > > where XXX I want to refer to 'probob.app2.views.foo'; however django is > going to make it refer to 'probob.app.views.probob.a

tutorials

2006-09-30 Thread Onno Timmerman
Hi, Its not easy when you first learn Django. You just start to get some grasps with it when you do the tutorials but the tutorials stop after 4 pages. Any idea when the rest will follow? --~--~-~--~~~---~--~~ You received this message because you are subscribed

Re: URL config, patterns

2006-09-30 Thread Ice9
thanx for the fast response --~--~-~--~~~---~--~~ 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 [EMA

Re: URL config, patterns

2006-09-30 Thread Guillermo Fernandez Castellanos
Hi, > urlpatterns = patterns('probob.app1.views', > (r'^$', 'index'), > (r'^test/', 'XXX'), > ) > where XXX I want to refer to 'probob.app2.views.foo'; however django is > going to make it refer to 'probob.app.views.probob.app2.views.foo'. Is > there a way to get around this? Yes

URL config, patterns

2006-09-30 Thread Ice9
Hello. In my app1/urls.py I have something like: urlpatterns = patterns('probob.app1.views', (r'^$', 'index'), (r'^test/', 'XXX'), ) where XXX I want to refer to 'probob.app2.views.foo'; however django is going to make it refer to 'probob.app.views.probob.app2.views.foo'. Is th

Re: Django Forums

2006-09-30 Thread Cerberus
I understand what you mean about splitting the community, but I put them up incase others wanted to have a set of forums, Google groups seems pretty good, Im still a n00b to this format though. I guess im just more used to using forums for support. [EMAIL PROTECTED] wrote: > I like your forum de

Re: Shopping carts with Django?

2006-09-30 Thread Maximillian Dornseif
Some more explanation on the design: * the shop is for low value goods and payment is via invoice.This allows a very lean shopping process: search for the product, click on the spare part to add it to the cart, click on checkout button enter your address click on commit and you are done. * no stu

Re: How about a Django apps public repository?

2006-09-30 Thread Steven Armstrong
On 09/30/06 17:35, Lucas Vogelsang wrote: > Hi, > Is this project/thread dead or is someone working on it? > > I'd like to use this repository, however I am fully tied up with my > other projects and can't help pushing it forward. > > regards, > lucas > looks like all the others have the same

Re: anyone see this problem in psycopg2 i m unable to debug this

2006-09-30 Thread Eric Walstad
On Friday 29 September 2006 07:31 pm, a wrote: > this sounds serious how do we implement rollbacks > i use postgres 8.1 > thanks > Anil --~--~-~--~~~---~--~~ You received this messag

Re: How about a Django apps public repository?

2006-09-30 Thread Lucas Vogelsang
Hi, Is this project/thread dead or is someone working on it? I'd like to use this repository, however I am fully tied up with my other projects and can't help pushing it forward. regards, lucas > --~--~-~--~~~---~--~~ You received this message because you a

Re: problem to solving URL

2006-09-30 Thread Ivan Sagalaev
Marco Amato wrote: > and URL.py > > ### > from django.conf.urls.defaults import * > > urlpatterns = patterns('', > # Example: > (r'^base/$', include('test.selecto.views')), > > # Uncomment this for admin: > (r'^admin/$', include('django.contrib.admin.urls')), > ) > ###

problem to solving URL

2006-09-30 Thread Marco Amato
Hi ,whit a view like this in selecto APP Create your views here.from django.http import HttpResponsedef index(request):    return HttpResponse("Hello, world. You're at the poll index.") and URL.py###from django.conf.urls.defaults import *urlpatterns = patterns('',  

Re: Why I'm giving up on Django

2006-09-30 Thread Norjee
Well.. let me add to this discussion as well :) 1) Loading 'static' templates is, imho, easily achieved. I wanted to lad them from the file system, but ended up putting static views in the database (using a custom, 15 lines of code template loader and a filter). The most astounding feature is the

Re: cheetah + django

2006-09-30 Thread Malcolm Tredinnick
On Sat, 2006-09-30 at 09:42 +, anil wrote: > import and use Cheetah's > > template-loading and rendering functions instead of Django's. > can you give me an example of how to do this The Cheetah website gives a simple example of how to produce output from Cheetah templates ([1]). In Django,

Re: is there any easy way to strip ORM from django

2006-09-30 Thread Malcolm Tredinnick
On Sat, 2006-09-30 at 09:49 +, anil wrote: > stripping ORM from django Could you please ask a more complete question in the future, since it isn't very clear what you are wanting to do here. If you don't call anything from django.db.models, you aren't using the ORM or database. Regards, Mal

Re: Serious Question... Web2.0

2006-09-30 Thread Oliver Andrich
Hi Tom, On 9/29/06, Tom Smith <[EMAIL PROTECTED]> wrote: > So... has anyone added Ajax themselves before, is anything available? > I really don't want to have to do it myself, semi-colons hurt my colon. I came back to Python and Django from RoR because of several reasons. One reason was, that I

Re: . Dates get a "Today" shortcut and calendar popup, and times get a "Now" shortcut and a convenient popup

2006-09-30 Thread anil
i was more looking for a simple way of using it thanks a lot Anil James Bennett wrote: > On 9/30/06, anil <[EMAIL PROTECTED]> wrote: > > Please help me out by telling where i can find this > > and is there an easy way to add this to other parts of the django web > > It's usually pretty easy to thi

is there any easy way to strip ORM from django

2006-09-30 Thread anil
stripping ORM from django Thanks Anil --~--~-~--~~~---~--~~ 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 ema

Re: Many-to-Many with Intermediate Table Bug in Admin in Django 0.95?

2006-09-30 Thread Paul Childs
Hello Malcom, In cooking up my test I made some changes and did some rebuilding that affected the database so I suspect that the "django_content_type" table got out of sync (I really can't confirm this since I am now at home) I retried, as you suggested, with a clean database at home and there

Re: cheetah + django

2006-09-30 Thread anil
import and use Cheetah's > template-loading and rendering functions instead of Django's. can you give me an example of how to do this thanks ANil James Bennett wrote: > On 9/30/06, anil <[EMAIL PROTECTED]> wrote: > > how do i use cheetah templates with django > > I have heard a lot about phenomen

Re: Serious Question... Web2.0

2006-09-30 Thread Andrew
We're using Django + AJAX + Mochikit. Works like a charm. a --~--~-~--~~~---~--~~ 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 fr

Re: Shopping carts with Django?

2006-09-30 Thread Maximillian Dornseif
Chris Moffitt wrote: > Is your code in an SVN repository somewhere? It would be great to see > what parts we might be able to leverage. Unfortunately not at this time. You might know the Brooks metric. Make it work: 1 Month Make it installable on a generic machine: 3 Months Document it so oth

Re: Project level template tags?

2006-09-30 Thread zenx
OK. Thank you! --~--~-~--~~~---~--~~ 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]

Re: import opml file

2006-09-30 Thread Jon Atkinson
A quick google search would have found you the following post: http://groups.google.com/group/django-users/browse_frm/thread/399360004a8d0716/d6d355feecef7f7a?lnk=st&q=django+imagefield+manipulator&rnum=4#d6d355feecef7f7a May I also suggest reading: http://www.catb.org/~esr/faqs/smart-questions