CI for Django projects

2010-02-19 Thread HB
Hey, Do you know a Continuous Integration tool that supports Django projects? Thanks. -- 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...@googlegroups.com. To unsubscribe from this group, send email

Testing Django applications

2009-12-15 Thread HB
Hey, Grails framework offers a huge set of tools to facilitate testing (unit and integration) I heard the same thing is true for Rails Does Django offers the same thing? Thanks. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this

First time deploying Django project

2009-08-26 Thread HB
Hey, I'm trying to deploy my first Django application to Apache. The project is located under: /home/me/SshConnector/ Here is my configuration: Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all AddHandler

Ajax in Django

2009-08-12 Thread HB
Hey, Why Django doesn't provide integration with Ajax out of the box (like Rails and Wicket)? Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Does Django fit this application?

2009-08-04 Thread HB
Hey, We have a couple of command that run over SSH. I have been asked to develop a web application to let the non technical departments to use the commands. For example, display a list of the current logged users and provide a link to log out him. The application should have a login facility. Can

Re: Your IDE of choice

2009-01-06 Thread HB
ikolay.pa...@gmail.com>wrote: > > > > > > > Emacs (23, +Rope, +auto-complete.el), indeed. > > > Have a nice day, > >    Nikolay. > > > On Tue, Jan 6, 2009 at 14:48, HB <hubaghd...@gmail.com> wrote: > > > > Hey, > > > What

Re: Your IDE of choice

2009-01-06 Thread HB
But Python support in NetBeans is still under development, right? On Jan 6, 1:50 pm, "James Matthews" <nytrok...@gmail.com> wrote: > Netbeans or WingIDE for me. > > On Tue, Jan 6, 2009 at 1:48 PM, HB <hubaghd...@gmail.com> wrote: > > > Hey, > &g

Your IDE of choice

2009-01-06 Thread HB
Hey, What is your favorite IDE for coding Django projects? Any ideas about PyDev and ActiveState Komodo IDE? Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send

Re: Django-like PHP framework?

2009-01-05 Thread HB
My PHP friend is really happy with CodeIgnite but I know nothing about it... On Jan 5, 4:11 pm, Peter Bailey wrote: > You might want to have a look at CakePHP. It follows the MCV pattern I > believe, although I have not looked closely because it is PHP not > Python. > >

Re: Why Django doesn't force testing?

2009-01-05 Thread HB
> Your email client apparently failed to generate tests for your > message, resulting in a misunderstanding. Which leads us to that we should be forced to write tests, not encouraged :) On Jan 5, 3:30 pm, James Bennett <ubernost...@gmail.com> wrote: > On Jan 5, 6:04 am, HB <hu

Re: Why Django doesn't force testing?

2009-01-05 Thread HB
clude code complexity tool. Supports profiles (dev, test, prod) I will post other thought as I get them :) On Jan 5, 2:22 pm, "Russell Keith-Magee" <freakboy3...@gmail.com> wrote: > On Mon, Jan 5, 2009 at 9:04 PM, HB <hubaghd...@gmail.com> wrote: > > > Sure, I mea

Re: Why Django doesn't force testing?

2009-01-05 Thread HB
Sure, I mean encourage not force :) On Jan 5, 1:53 pm, Malcolm Tredinnick <malc...@pointy-stick.com> wrote: > On Mon, 2009-01-05 at 03:27 -0800, HB wrote: > > Hey, > > One nice thing about JBoss Seam and Rails is they encourage unit > > testing from the very beginning.

Why Django doesn't force testing?

2009-01-05 Thread HB
Hey, One nice thing about JBoss Seam and Rails is they encourage unit testing from the very beginning. Django as an agile web framework, why doesn't follow the same philosophy? Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to

Re: Do you recommend "Practical Django Projects"?

2009-01-05 Thread HB
I'm trying to learn Django, what to do right now? :p On Jan 5, 10:27 am, James Bennett <ubernost...@gmail.com> wrote: > On Jan 5, 2:21 am, HB <hubaghd...@gmail.com> wrote: > > > Hey, > > I'm reading "The Definitive Guide To Django" but it is too out dated

Do you recommend "Practical Django Projects"?

2009-01-05 Thread HB
Hey, I'm reading "The Definitive Guide To Django" but it is too out dated. Do you recommend "Practical Django Projects" instead? It seems to me that "The Definitive Guide To Django" is more organized and covers a lot of materials. What do you think? Thanks.

Re: AttributeError when trying to access the Admin application

2009-01-04 Thread HB
On Jan 4, 2009, at 8:14 PM, HB wrote: > > > > > Well, sorry but where to add those lines? > > In your settings.py file. There might not be a MIDDLEWARE_CLASSES   > value at all at the moment (though I can't imagine where it went), so   > make sure the

Re: AttributeError when trying to access the Admin application

2009-01-04 Thread HB
buteError at /admin/ Exception Value: 'WSGIRequest' object has no attribute 'user' +++ I'm new to Django and I'm reading "The Definitive Guide to Django" which seems to me too out dated... On Jan 4, 1:34 pm, Eric Abrahamsen <gir...@gmail.com> wrote: > On Jan 4, 2009, at 7:19 PM, HB

Re: AttributeError when trying to access the Admin application

2009-01-04 Thread HB
gir...@gmail.com> wrote: > On Jan 4, 2009, at 4:58 PM, HB wrote: > > > > > > > Hey, > > I'm trying to create Admin application for my Django project, here are > > some snippets: > > +++ > > from django.contrib import admin > > admin.a

Templates dir exception

2009-01-04 Thread HB
Hey, My Django project has the following structure: +++ djcode # Django files (urls.py ...) templates (for storing template pages) books # books application files (models.py ...) publisher_list.html +++ Here is a snippet from settings.py TEMPLATE_DIRS

When to use each of these approaches ?

2009-01-04 Thread HB
Hey, What is the difference between: query = request.GET.get('q', '') and (r'^time/plus/(\d{1,2})/$', hours_ahead) And when to use each approach? Thanks guys. #I'm new to Django, forgive my simple questions :) --~--~-~--~~~---~--~~ You received this message because

AttributeError when trying to access the Admin application

2009-01-04 Thread HB
Hey, I'm trying to create Admin application for my Django project, here are some snippets: +++ from django.contrib import admin admin.autodiscover() urlpatterns = patterns('', (r'^admin/(.*)', admin.site.root), ) INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes',