Re: looking for calender and a message board

2007-06-23 Thread Carl Karsten
[EMAIL PROTECTED] wrote: > If by message board you mean a forum, a la VBulletin and the like, > Zyons is the only Django one I know of: http://zyons.com/ cool - thanks. > > As for calendar, I wasn't able to find an existing generic calendar > app, and have been working on rolling my own for my

Re: looking for calender and a message board

2007-06-23 Thread Bryan Veloso
I just found this a few minutes ago: http://code.google.com/p/beastly/ On Jun 23, 9:16 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > If by message board you mean a forum, a la VBulletin and the like, > Zyons is the only Django one I know of:http://zyons.com/ > > As for calendar, I wasn't a

Re: looking for calender and a message board

2007-06-23 Thread [EMAIL PROTECTED]
If by message board you mean a forum, a la VBulletin and the like, Zyons is the only Django one I know of: http://zyons.com/ As for calendar, I wasn't able to find an existing generic calendar app, and have been working on rolling my own for my project. I'd share, but it is most definitely not go

Re: Introducing DjangoSites.Org

2007-06-23 Thread Kai Kuehne
Hi Forest, On 6/24/07, Forest Bond <[EMAIL PROTECTED]> wrote: > On Sun, Jun 24, 2007 at 01:42:26AM +0200, Kai Kuehne wrote: > > > > It's nice but I don't really like the design. It doesn't have to be > > 'beautiful', but everything on the site is very big (e.g. font size). > > Sorry, I have to di

Re: Introducing DjangoSites.Org

2007-06-23 Thread Forest Bond
On Sun, Jun 24, 2007 at 01:42:26AM +0200, Kai Kuehne wrote: > > It's nice but I don't really like the design. It doesn't have to be > 'beautiful', but everything on the site is very big (e.g. font size). Sorry, I have to disagree here. I'm not sure when the "small fonts = beautiful" trend starte

Re: Introducing DjangoSites.Org

2007-06-23 Thread Kai Kuehne
It's nice but I don't really like the design. It doesn't have to be 'beautiful', but everything on the site is very big (e.g. font size). --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post

Re: Newbie: Problem with checkboxes

2007-06-23 Thread Nathaniel Martin
I changed it to save(), but it still doesn't save. I did a test by changing the title of the todos, and it is saving changes... the problem is in finding out which boxes are checked. I'll look into form_for_model and form_for_instance. On 6/23/07, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: > >

Re: Ticket #3297 & Newforms Image Uploading

2007-06-23 Thread Bryan Veloso
On Jun 23, 2:41 pm, Bryan Veloso <[EMAIL PROTECTED]> wrote: > > for n in range(0, MAX_NUM_UPLOADS): > > img_manip = ImageAttachment.AddManipulator() > > img_obj = img_manip.save() > > uploaded = clean_data['img_fld%d' % n] > > obj.save_image_file(uploaded['filename'], uploaded['con

Re: Ticket #3297 & Newforms Image Uploading

2007-06-23 Thread Bryan Veloso
> for n in range(0, MAX_NUM_UPLOADS): > img_manip = ImageAttachment.AddManipulator() > img_obj = img_manip.save() > uploaded = clean_data['img_fld%d' % n] > obj.save_image_file(uploaded['filename'], uploaded['content']) What library did you have to import to get ImageAttachment to

Free is too expensive... Own the Internet!

2007-06-23 Thread sean0407
This is AGLOCO 's proposition, just three words: Own the Internet. Whenever you are online, either surfing, blogging, clicking on an ad, making a purchase, all the money generated by your activities is pocketed by a small number of players. At AGLOCO they say not anymore! AGLOCO is a global c

Re: Introducing DjangoSites.Org

2007-06-23 Thread Carl Karsten
I just hit it - looks nice - I like the tag cloud. I have been meaning to hit it ever sense I saw your post, but today I had a need and was hoping DjangoSites.Org would help. what follows is not related to content, I realize it is new and will improve over time. As a 'visitor' I get the feel

looking for calender and a message board

2007-06-23 Thread Carl Karsten
I am going to build a site that needs a calender and a message board, plus some specialized things that will 'integrate' with those two features. So it would be good if the whole site used the same glue. Anyone have any suggestions? Carl K --~--~-~--~~~---~--~

Help Me

2007-06-23 Thread YASAKTIR YASAKTIR
Please, enter on http://www.dceunerj.com.br and vote on "Lais Alessandra" Please! --~--~-~--~~~---~--~~ 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.c

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 need

Re: Memcache

2007-06-23 Thread Jeremy Dunck
On 6/23/07, Grupo Django <[EMAIL PROTECTED]> wrote: > Now I'm thinking to set a memcache system, and I have a question. Is > there any way to flush the cache and force the load of the new > content? from django.core.cache import cache cache.delete('your_key') > As a second question, I'd like to

Re: Newbie: Problem with checkboxes

2007-06-23 Thread [EMAIL PROTECTED]
Nathaniel: On Jun 22, 3:42 pm, "Nathaniel Martin" <[EMAIL PROTECTED]> wrote: > I'm working on learning Django, and I'm having trouble getting a basic > "todo" app working. > > I'm listing all my todo items in my template, with a checkbox next to each > one for "done". > > I have an update button

Memcache

2007-06-23 Thread Grupo Django
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 need to make the changes visible inmediatly, I delete the cache file from disk. Now I'm thi

Re: database connections

2007-06-23 Thread Gary Doades
Mike H wrote: > Hi all, > > Is there a recommended solution for connection pooling with postgres? > I've seen SqlRelay and pgpool mentioned but they both seem to have > downsides in terms of affecting query performance. What have people here > used? > I use pgpool and it works brilliantly.

Re: database connections

2007-06-23 Thread Malcolm Tredinnick
On Sat, 2007-06-23 at 13:30 +0100, Mike H wrote: > Hi all, > > It looks like we're going to start work on a very high profile site and > I'm investigating performance tweaks we can make to ensure we can handle > the load :) > > One of the areas I'm concerned about is having to make a connectio

Re: Django Developer Needed

2007-06-23 Thread Eric Azarcon
Noah Gift wrote: > So, now substitute pizza shop, for newspaper shop and pizza for a > CMS/Newspaper Website. My point is no matter how good of Thanksgiving > Turkeys you make, and despite that fact that your oven can cook > ANYTHING, people are probably going to be most interested in making

database connections

2007-06-23 Thread Mike H
Hi all, It looks like we're going to start work on a very high profile site and I'm investigating performance tweaks we can make to ensure we can handle the load :) One of the areas I'm concerned about is having to make a connection to the database for every request, and I'd be very grateful

Re: Development / Production Setup

2007-06-23 Thread marknca
Thank you both SmileyChris & Nimrod putting what you've both suggested solved the issues! I really appreciate the help. Cheers, Mark --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post

Re: Django Developer Needed

2007-06-23 Thread Noah Gift
On 6/23/07, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > > > > On 22-Jun-07, at 5:41 AM, Noah Gift wrote: > > > > unique interactive web applications, etc. current plans include a > > > python-based CMS such as django on Linux. > > > > you could also inform them that django is not a CMS - if they

Re: Install a django site

2007-06-23 Thread arf_cri
I'm trying to install o project that has been already written. On Jun 23, 3:29 am, Kelvin Nicholson <[EMAIL PROTECTED]> wrote: > > I am new to Django. I have a django project that I would like to run. > > How should I do? I have installed django, i don't know how to run the > > project. > > Are y

Re: admin: suggestions for how to warn users that an object is being viewed for editing

2007-06-23 Thread [EMAIL PROTECTED]
So Django keeps a connection open from view-to-view? If so, db level locking should work, but I thought a transaction was started on going into a view, and commited/rolled-back on exit. If the later, then I don't think James' idea will work. Am I missing something? Thanks, Julian On Jun 22, 8: