genstatic - Generate and maintain static HTML files with Django templates

2010-06-25 Thread Aaron Maxwell
Hi all, Here is a GPLed software tool I made recently: http://github.com/redsymbol/genstatic Hope some of you find it useful and interesting. Please let me know if you have any feedback. Cheers, Aaron -- Aaron Maxwell http://redsymbol.net/ -- You received this message because you

django-tel new features

2009-08-02 Thread Aaron Maxwell
released soon. License is GPL version 3. Hope you find this of value. Please let me know of any comments, bug reports or feature requests. Cheers, Aaron -- Aaron Maxwell Hilomath - Mobile Web Development http://hilomath.com/ --~--~-~--~~~---~--~~ You rec

Re: parsing urls with dot

2009-07-10 Thread Aaron Maxwell
raw strings? Post the whole urlpattern here, including the failed regexp, so we can give more specific feedback. -- Aaron Maxwell Hilomath - Mobile Web Development http://hilomath.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to

Re: django-tel : telephone URL support for Django

2009-07-09 Thread Aaron Maxwell
I should put this in a FAQ or the README. -- Aaron Maxwell Hilomath - Mobile Web Development http://hilomath.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to th

django-tel : telephone URL support for Django

2009-07-09 Thread Aaron Maxwell
github issue tracker. Cheers, Aaron -- Aaron Maxwell Hilomath - Mobile Web Development http://hilomath.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, sen

Re: Design a good scrapbook system

2009-07-08 Thread Aaron Maxwell
recise features will be and how they are used (i.e. user interface). The best approach is starting small, adding one small piece of functionality at a time, and proceeding incrementally. Good luck! -- Aaron Maxwell Hilomath - Mobile Web Development http

Re: changing apache mod python

2009-07-01 Thread Aaron Maxwell
dgrade the django version. Too much > production code. -- Aaron Maxwell http://redsymbol.net/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send

Re: how to disable URL auto-completion

2009-06-28 Thread Aaron Maxwell
to the toplevel domain url to create the full myURL. Then pass myURL directly to the template as above (again, remember the "safe" filter). This is the best approach for you most likely. Cheers, Aaron -- Aaron Maxwell http://redsymbol.net/ --~--~-~--~~~---~

Re: Problem with startproject

2009-06-02 Thread Aaron Maxwell
all at the command prompt, one at a time) ls -dl /home/morgan/www ls -dl /home/morgan/www/mysite whoami touch /home/morgan/www/TESTFILE After the last one, does the file /home/morgan/www/TESTFILE exist? -- Aaron Maxwell http://redsymbol.net/ --~--~-~--~~

Do you use a skeleton for new django sites?

2009-06-02 Thread Aaron Maxwell
o you have some different approach that solves this problem for you? Thanks, Aaron -- Aaron Maxwell http://redsymbol.net/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to th

Re: URL conf question .....

2009-05-27 Thread Aaron Maxwell
o this, be careful that the first mention of urlpatterns is an assignment (=) and all subsequent mentions are appends (+=). Otherwise you'll loose all the url patterns that preceded the final assignment... an error that can drive you nuts if you don't know to w

Re: Django version

2009-05-20 Thread Aaron Maxwell
leases of django from the past two years, I like to put this in my settings.py: {{{ from django import VERSION as DJANGO_VERSION assert (1,1) == DJANGO_VERSION[:2], DJANGO_VERSION }}} (If, for example, this particular django site is expecting version 1.1.) -- Aaron Maxwell http://redsymb

Re: Does a django social sharing widget app exist?

2009-05-19 Thread Aaron Maxwell
On Monday 18 May 2009 09:33:39 pm Sam Chuparkoff wrote: > I haven't looked at this, but here's a link: > > http://tylerlesmann.com/2009/mar/09/announcing-django-sociable/ This appears to be EXACTLY what I'm looking for. Thanks, Sam! -- Aaron Maxwell http://reds

Re: how to use filter

2009-05-18 Thread Aaron Maxwell
On Sunday 17 May 2009 11:00:15 pm laspal wrote: > list = Status.objects.filter(someid = 20, value < val2, value > val1) try this: list = Status.objects.filter(someid=20, value__lt=val2).filter(value__gt=val1) -- Aaron Maxwell http://reds

Does a django social sharing widget app exist?

2009-05-17 Thread Aaron Maxwell
could just add to the installed apps in settings.py, set a few config variables, then include something like {% social_share_buttons %} in the template. If this exists, google doesn't seem to know about it. Maybe I need to write it... Thanks, Aaron -- Aaron Maxwell http://redsymbol.net

Re: registration module - log user in upon activation

2008-08-26 Thread Aaron Maxwell
- otherwise this view recurses infinitely. Basic idea is the same though. On Tuesday 26 August 2008 11:36:54 am Aaron Maxwell wrote: > {{{ > from django.contrib.auth import authenticate, login > from registration.models import RegistrationProfile > from registration.views import activat

Test client: how to tell if user is logged in?

2008-08-26 Thread Aaron Maxwell
Hi all, Using django 1.0beta's test client, is there some reliable way to tell if a test user is logged in? It would be nice to do this within the test case code. However, even within a view, using request.user.is_authenticated does not seem to work properly. Thanks, Aaron -- Aaron

registration module - log user in upon activation

2008-08-26 Thread Aaron Maxwell
e requires. Suggestions appreciated! Thanks, Aaron -- Aaron Maxwell http://redsymbol.net --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us

Re: Django-based forum software?

2007-08-30 Thread Aaron Maxwell
Thanks, everyone. -Aaron On Thursday 30 August 2007 09:47:41 Aaron Maxwell wrote: > Hi, > > Does anyone know of a django forum app? I.e., to build a site providing a > user forum. > > This is kind of hard to search on - try googling for "django forum".

Django-based forum software?

2007-08-30 Thread Aaron Maxwell
Hi, Does anyone know of a django forum app? I.e., to build a site providing a user forum. This is kind of hard to search on - try googling for "django forum"... -- Aaron Maxwell http://redsymbol.net Business Owners and Self-Employed: You're NOT Alone! The Business But