Re: How to use post_save signal

2008-11-05 Thread Antoni Aloy
# get the instance instancia = kwargs['instance'] # Creates the object who's going to store the username usuari = Eliminat(user=instancia.username) # and the save it usuari.save() pre_delete.connect(regist

Re: How can I print all of received variables in template ?

2008-11-11 Thread Antoni Aloy
2008/11/11 K*K <[EMAIL PROTECTED]>: > > Hi, all. > > I want to write a page template for test my program. > > How can I print all of variables posted to the template? > > Just like Django's error page. well, just check the Django code ;) -- Antoni Aloy L

Re: Template translation

2008-11-11 Thread Antoni Aloy
you're using the right language in your browser, that is the language on which you want the pages or you have managed yourself to change the languaje. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~---~--~~ You received t

Re: Caching and I18n

2008-11-20 Thread Antoni Aloy
for it > should be fairly straightforward as well. So it looks close. > > Regards, > Malcolm Anybody on this thread is going to take the ticket? I could take a look at it and make the tests. Best regards, -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~

Re: Caching and I18n

2008-11-25 Thread Antoni Aloy
the next > one and will give feedback once that's been done. > It's nice to help! But you have to consider this is my first patch on Django core, and I just be really sure that everything is ok when one of django main developers double check the tests :) -- Antoni Aloy Ló

Re: Best IDE for Django and python?

2008-11-25 Thread Antoni Aloy
2008/11/25 Kurczak <[EMAIL PROTECTED]>: > > I wonder why no one mentioned Komodo IDE or Komodo Edit. > They're my personal favorites for bigger projects. Both are well > suited for dynamic languages and really lightweight compared to > Bloatclipse with pydev (or aptana). I have tested Komodo Edit

Re: best practices for SOAP client in Django

2008-12-05 Thread Antoni Aloy
g caches when appropiated, connection pooling etc For the Django point of view is just another library, in the form of a service we instatiate in the application __init__.py. I don't know if this is the best way to do it, but it works quite well for us. Best regards, -- Antoni Aloy López Bl

Re: How to return a specified column from database

2008-12-13 Thread Antoni Aloy
hout >> > using SQL query (select y from table where x =1), how to do it? >> >> There is a method which will do this, and it is listed in the database >> API documentation alongside all the other querying methods. >> >> -- >> "Bureaucrat Conrad, you are techni

Re: MySpace clone using Django? Is it possible?

2008-12-20 Thread Antoni Aloy
users and company needs that getting a pre-built solution and just change the css. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django

Re: PDF to Text Coverter

2008-12-22 Thread Antoni Aloy
brary is available to read a pdf files... ? > > Or any library to convert the pdf into text files? > > If you have any idea about above issues > > please let me know... > > Regards > Harish Bhat M -- Antoni Aloy López

Re: Executing logic for each object in object_list

2008-12-25 Thread Antoni Aloy
to have database- > insertion logic inside template tags. > --~--~-~--~~~---~--~~ Sounds like a work for signals http://docs.djangoproject.com/en/dev/topics/signals/ -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~-

Re: Getting value of field from form.

2008-12-27 Thread Antoni Aloy
just a matter to write {{form}} Hope it helps! -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, se

Re: django i18n for google

2008-12-27 Thread Antoni Aloy
ocalized site so Google would be able to crawl it, but I suppose that your site depens on changing the language via POST, isn't it? I that case, you could write yourselve the code and allow changing the code using GET. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.n

Re: request.user is set to None

2008-12-29 Thread Antoni Aloy
s properties. So double check that you have SessionMiddleware and AuthenticationMiddleware configured in your settings.py, and if it fails give more information about how you're accessing to the User object. Hope it helps! -- Antoni Aloy López Blog: ht

Re: reusing the same block in extends "base.html"

2009-01-02 Thread Antoni Aloy
gt; > > > You can create a tag, depending on how your application is could make sense. What's clear is that you can't use the same block name twice. Best regards, -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~

Re: changing code = restarting django??

2008-09-05 Thread Antoni Aloy
t; In php when you change the code there is no need to restart the > server, but in j2ee its necessary to recompile everything. how does > that work in django? > > > > -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~--

Re: Introducing django-cms

2008-09-08 Thread Antoni Aloy
lopment and we would appreciate any > feedback and contributions. > > I also like very much http://code.google.com/p/django-page-cms/ . Your project seems more oriented to a end user cms, and django-page-cms is more oriented towards integration. Anyway I like the idea of have a multi-language Django-ba

Re: Introducing django-cms

2008-09-09 Thread Antoni Aloy
2008/9/8 Thomas Steinacher <[EMAIL PROTECTED]> Hi Thomas! > > @Antoni Aloy: > What do you mean by integration? Like integrating other applications > (e.g. a gallery) into the CMS? We're still looking for a good solution > to do that (e.g. by providing an API which allo

Re: PostgreSQL with Psycopg2

2008-10-13 Thread Antoni Aloy
stgresql-client-8.3 >postgresql-contrib-8.3 > 5. Psycopyg2-2.0.8.tar.gz - Downloaded & Installed. > > Have you tried to import Psycopyg directly from the Python interpreter? Double check that you really have psycopg2 installed. On ubunto to th /usr/lib/python2.5/site-pacakges and

Re: XML Serialization Speed

2009-01-25 Thread Antoni Aloy
prototype and test the performance for each. For one of my applications I found that lxml+mako templates was the best solution for me, but perhaps it's not your case. http://diveintopython.org/performance_tuning/timeit.html -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.n

Re: Change widgets in ModelFormSet

2009-01-30 Thread Antoni Aloy
g alwasy the same rules, so you can be sure that id would be always the same. Get the id and add a css acording, for exemple. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~---~--~~ You received this message because you are subsc

Re: Template tags question

2009-01-31 Thread Antoni Aloy
ay that could be iterated and presented in the way you want. So just pass to the template the list wicth contains the fnal data. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~---~--~~ You received this message because you are sub

Re: Reverse foreign key lookup with unknown model

2009-01-31 Thread Antoni Aloy
a property in A class A(models.Model): @property def connected(sefl): try: x = self.b except: # put the real exception here x = self.c return x -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~---~--

Re: table display with AJAX

2009-02-07 Thread Antoni Aloy
is loaded, I'd also like >> to be able to sort dynamically (using javascript). Before I go and >> implement this myself, anyone have any suggestions on already made >> solutions? Thanks. > Look at my sample code at: http://code.google.com/p/appfusedjango/source/browse/#svn/trunk

Re: looking for working example of mptt

2009-02-09 Thread Antoni Aloy
2009/2/10 laspal : > > hi, > Does anyone has a working example of django mptt. I am not able to > implement it. > On the docs you have the way to go. I've followed them and it works for me. Django-page-cms also uses it, so you can also look there. Hope it helps -- Antoni A

Re: Django and jQuery trouble

2009-02-10 Thread Antoni Aloy
; > def test_1(request, zipcode, pro): > if zipcode == 'a' and pro == 'b': >city = 'c' > else: >city = '' > > return HttpResponse(city) > > Could you please give me some idea? > Tes

Re: HttpResponse post

2009-02-16 Thread Antoni Aloy
response = HttpResponse ("newUrl") >#¿POST? >return HttpResponseRedirect(response) > After a post you should use a HttpResponseRedirect(url). If you need to have access to the post parameters an option is to save them in a session, or encode them in the url itslef

Re: HttpResponse post

2009-02-17 Thread Antoni Aloy
ype": "application/x-www-form-urlencoded", ..."Accept": "text/plain"} >>> conn = httplib.HTTPConnection("musi-cal.mojam.com:80") >>> conn.request("POST", "/cgi-bin/query", params, headers) >>> re

Re: Authentication with LDAP

2009-02-18 Thread Antoni Aloy
would help you. http://www.carthage.edu/webdev/?p=12 The LDAP backend is quite simple, as it Active Directory backend, so perhaps you can debug it and tell where is your problem. On the other hand, remember that the ldap backend would be begore the default backend. -- Antoni Aloy

Re: Authentication with LDAP

2009-02-19 Thread Antoni Aloy
2009/2/19 João Olavo Baião de Vasconcelos : > On Wed, Feb 18, 2009 at 7:17 PM, Antoni Aloy wrote: >> >> This is a quite nice tutorial, perphaps it would help you. >> http://www.carthage.edu/webdev/?p=12 > > Thanks for the advice, Antoni. > > I tried authenti

Re: Django MPTT Admin

2009-02-26 Thread Antoni Aloy
, but we'll see. > > In any case, you'll find the code on github: > http://github.com/matthiask/feincms/tree/master > > > Thanks, > Matthias > > It seems very nice. I'm going to give it a try. :) Thank you! -- Antoni Aloy López Blog: http://trespams.c

Re: i'm use first time how to use it

2009-02-28 Thread Antoni Aloy
2009/2/28 NK B : > > hello >     i 'm use first  time. so don't know about DJango so u help me how > installed it and  develop it > > Just follow the Django tutorial and the ask in the list any problems you have. Best regards, -- Antoni Aloy López Blog: ht

Re: Should I use Django?

2009-03-08 Thread Antoni Aloy
 Is there any reason why I should use Django on my > site, on the Google App Engine? > --~--~-~--~~~---~--~~ Is there any reason you should'nt? Plain CGI code sounds quite old even for me ;) -- Antoni Aloy Lópe

Re: Should I use Django?

2009-03-08 Thread Antoni Aloy
it's worth as it could make the project more maintenable in the future. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users&quo

Re: trouble w/images

2009-06-20 Thread Antoni Aloy
save to disk >    imagefile = open(os.path.join('/tmp',filename), 'w') >    resizedImage.save(imagefile,'JPEG') >    imagefile = open(os.path.join('/tmp',filename), 'r') >    content = File(imagefile) > > >    path = 'img/tes

Re: Sessions Not working.

2009-06-25 Thread Antoni Aloy
e saving it in the database? >From your configuration I just see python2.3 too old for my preferences. You should also use Django 1.0.2 as its the last estable version (if you don't want to work in the cutting edge of course). Hope it hel

Re: Password-protecting PDF downloads?

2009-06-29 Thread Antoni Aloy
s downloaded? Take a look at http://blog.kovyrin.net/2006/11/01/nginx-x-accel-redirect-php-rails/ to port to Django or http://www.djangosnippets.org/snippets/491/ On this way you can control who has the rights to download a file without password protecting it. Hope it helps! -- Antoni Aloy López Blog: http:/

Re: dynamic inserting items to template

2009-08-10 Thread Antoni Aloy
checkbox > > thanks for reply > > You can create a template tag to do the work for you and pass the number of items you want as a parameter. You can also create using javascript and use a django template variable to set the counter. -- Antoni Aloy López Blog:

Re: is Django a good choice for a LAN app?

2009-08-11 Thread Antoni Aloy
t you have lots, tons of libraries and routines that are goint to help you. Actually developing web applications for internal use has lot of sense and protects your inversion, as the actual application you're making today for internal use, coud be accessible from outside the company with nearly

Re: i18n javascript problem

2009-08-18 Thread Antoni Aloy
nks a lot. > Caio > > project is the name of your project, isn't it? You have to remember to include the url for the translation javascript as the documentatios is well explained. On the other hand, I have experienced some problems getting the javascript keys from the temp

Re: Django and ZSI

2009-08-31 Thread Antoni Aloy
perfectly with Django. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.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-users@goog

Re: Showng the primary key in admin view

2009-09-01 Thread Antoni Aloy
gt; Why not just def __unicode__(self): return u'%s : %s' % (self.id, self.name) On the other hand it you can use also list_display, but requires to create an admin.py file. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~-

Re: Django, Blueprintcss and a data array

2009-09-05 Thread Antoni Aloy
dfor %} >                 > >           {% endfor %} >         > > > > > {% endblock %} > I would add surronding the table code, but I can't see any problem. Please post the error. In my oppinion you'll have to check the dataarray as it seems that one of the

Re: Django / Postrges problem

2009-03-25 Thread Antoni Aloy
onsumes more time, it should be the cron job one. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this gro

Re: Fulltext searching

2009-03-27 Thread Antoni Aloy
se better than the mysql fulltext >> searches? I prefer to stay away from database indexing so the application is database agnostic. I have integrated xapian successfully in some projects using django-xapian, and it works quite well. You can see it in action in trespams.com. -- Antoni Aloy L

Re: multiple django versions in mod_python

2009-04-04 Thread Antoni Aloy
env for that http://blog.ianbicking.org/2007/10/10/workingenv-is-dead-long-live-virtualenv/, that allows us to mantain diferent versons of applications with their own dependencies. Best regards, -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~--

Re: Novice. - _unicode_(self) not working. :(

2009-04-05 Thread Antoni Aloy
 def  _unicode_(self): __unicode__(self) with two underscores -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" gr

Re: How to get session data from template

2009-04-05 Thread Antoni Aloy
}, the user object is only > available in one request but will be dissapeared in the next request. In your render_to_response don't forget to add context_instance=RequestContext(request) Hope it helps! -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~

Re: how to redirect to previous page

2009-04-21 Thread Antoni Aloy
gt; Thanks > You can save the previous page in a session variable before making the redirect and then use it in the foo page. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~---~--~~ You received this message because you are

Re: Category list in Django

2009-05-10 Thread Antoni Aloy
2009/5/10 Bro : > > How to create a correct Tree of category ? > Take a look at django-mptt at http://code.google.com/p/django-mptt/ it would help you a lot. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~---~--~~ You

Re: Category list in Django

2009-05-10 Thread Antoni Aloy
2009/5/10 Bro : > > Thanks, I try to use django-mptt. > I've installed it but how do you use it ? > You have the documentation at: http://django-mptt.googlecode.com/svn/trunk/docs/models.txt mptt will give you lots of extra messages to deal with the category tree. -- Anton

Re: Parsing the arguments in HTTP GET

2009-05-15 Thread Antoni Aloy
angoproject.com/en/dev/ref/request-response/) or you can rethink your application urls so they could be as: http://example.com/data/2/1#label//fetch so they could match ^data/(?P\d+)/(?P\w+)/(?P\w+)/(?P)/$ hope it helps. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net -

Re: Trouble using pdb with manage.py runserver

2009-05-16 Thread Antoni Aloy
ou test it with the noreload parameter? On the other hand I prefer to use import pdb; pdb.set_trace() in my code to set the breakpoint. You can also use winpdb, or even the Eclipse+pyDev debugger, but you have to run manager with the noreload option. -- Antoni Aloy López Blog: http://tresp

Re: Counting pageviews

2009-05-16 Thread Antoni Aloy
ave a great impact in performance. It depends on your needs and application. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users&qu

Re: how to refer a foreign key to a non primary column from other model

2009-05-16 Thread Antoni Aloy
h_user table. > > class details(models.Model): >   new_foreign_col = > http://docs.djangoproject.com/en/dev/ref/models/fields/#django.db.models.ForeignKey Check: ForeignKey.to_field Hope it helps! -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~

Re: parsing data from fileupload

2009-05-17 Thread Antoni Aloy
#x27;m confused ... Please check http://docs.djangoproject.com/en/dev/topics/http/file-uploads/ it would help you a lot to deal with file uploads. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~---~--~~ You received this message bec

Re: Free eBook: Django 1.0 Website Development

2009-05-22 Thread Antoni Aloy
ou know someone who could > benefit from a good Django book, than visit: > http://jasonleveille.com/2009/05/free-web-development-ebooks and leave > a comment. Perhaps I'm confused and you have the rights to publish and distribute that book but if this is not the case you should avo

Re: image upload

2009-06-05 Thread Antoni Aloy
/appfusedjango/source/browse/#svn/trunk/thumbs_prj? -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this gr

Re: View arguments via url are not being passed to the view.

2009-06-13 Thread Antoni Aloy
n as it is it matches also notes/a/0/ so the second url never captures the parameters. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups &

Re: Complex global footer

2009-06-14 Thread Antoni Aloy
e it in the footer. Remember that is just Python code, so you can use the Django cache API. Use the template tag in the base.html and inherit the other templates from base. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~---~--~~

Re: Running Django on Tornado's HTTP server

2009-09-13 Thread Antoni Aloy
ng Tornado with your Django projects, > please let us know what bugs you find so we can fix them. Any and all > feedback is appreciated. > We're acually using Cherrypy, so it would be quite easy to test and check the performance. We'll post any issues we found. Thank you! --

Re: Running Django on Tornado's HTTP server

2009-09-14 Thread Antoni Aloy
2009/9/13 Antoni Aloy : > 2009/9/13 Bret Taylor : >> >> I am one of the authors of Tornado (http://www.tornadoweb.org/), the >> web server/framework we built at FriendFeed that we open sourced last >> week (see http://bret.appspot.com/entry/tornado-web-server). >&g

Re: Running Django on Tornado's HTTP server

2009-09-19 Thread Antoni Aloy
CherryPy in WSGI mode involves a nginx server acting as a reverse proxy and serving the media files. I use the configuration without nginx pointing directly to the WSGI server just to make sure that all the media points to right server. That is, tha

Re: Breakpoints in NetBeans

2009-09-21 Thread Antoni Aloy
breakpoint in the code. When I really need a visual debugger and more advanced features I run python manage.py runserver --noreload with winpdb, a nice graphical debugger which has nearly everithing I like to have in Netbeans IDE. -- Antoni Aloy L

Re: Running Tornado instead of modwsgi apache

2009-10-15 Thread Antoni Aloy
s you have to consider other server options. In our case our reason to move from apache+wsgi configuration to a ngnix + WSGI CherryPy/Tornado configuration not was performace but resources. Even loosing some performance the relation between the number of requests per second and the memory a

Re: Building a form to write one of two models

2009-10-16 Thread Antoni Aloy
. You can create a factory for the form. That is, given the information from the html, you choose wicht form to instantiate. def get_form(param): if param == 'op1': return Form1 elif param =='op2': return Form2 ... On the view file MyForm = get_form(param_

Re: using ajax with django

2009-10-19 Thread Antoni Aloy
it. > To use ajax you need to be able to make AJAX connections through javascript and make your view.py code to return the right format depending on the request (html, xml, json). So theres nothing special you need to install. -- Antoni Aloy López Blog: http://trespams.c

Re: "can't adapt" - mod_python, multiple interpreters, psycopg2

2009-10-21 Thread Antoni Aloy
ry.py", line 348, in get_aggregation result = query.execute_sql(SINGLE) File "/usr/local/virtualenvs/trobacasa/lib/python2.5/site-packages/django/db/models/sql/query.py", line 2369, in execute_sql cursor.execute(sql, params) ProgrammingError: can't adapt --

Re: syntax error what am i doing wrong???

2009-10-26 Thread Antoni Aloy
     'Where you can store and share bookmarks!' > ) > return HttpResponse(output) > > > > At first sight: you need triple quote string not single. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~---~-

Re: debug toolbar problem

2009-11-01 Thread Antoni Aloy
ing your pages? Are you using Django ORM? -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this

Re: Migrating a Wordpress website to Django

2009-11-02 Thread Antoni Aloy
press to Django. The main difficult was to take care of tags and html conversions. You can mantain url with Django Redirect and hardcondig some of the others in urls.py. I had to create a migration script but this was just a matter of hours with a little bit of ma

Re: language switching in admin

2009-11-07 Thread Antoni Aloy
language. I now want to do this in admin - a custom form should do it, but > has anyone done this? Or is it going to come to admin? Or maybe it is there > and I have not noticed it? And letting the users to change their language modifiying the main admin template and giving them a change

Re: The job of a django web designer

2009-11-15 Thread Antoni Aloy
elopment team and for that she must understand the django template system as well as subversion and to be able to code without Dreamweaver. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net -- You received this message because you are subscribed to the Google Groups "Dj

Re: Django i18n

2009-11-16 Thread Antoni Aloy
have a look at http://code.google.com/p/appfusedjango/source/browse/#svn/trunk/appagenda, you'll find an agenda example with different languages. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net -- You received this message because you are subscribed to the Google Groups "

Re: style guide/autoformatter/linter for Django templates?

2009-12-01 Thread Antoni Aloy
rmat your >>> >> templates...to indent block tags, for example?  I I have been playing with Ulipad editor, http://code.google.com/p/ulipad/, it has Django template syntax support as well as Django project support. It's a nice and fast editor, and it has one of the best autocompl

Re: Rails-style form value deserializer?

2009-12-19 Thread Antoni Aloy
mentation about forms http://docs.djangoproject.com/en/dev/ref/forms/api/#ref-forms-api Django documentation us much superior :-P -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net -- You received this message because you are subscribed to the Google Groups "Django u

Django 1.1.2?

2010-05-17 Thread Antoni Aloy
Hello, On the main Django page the official version is 1.1.1 but there is a new 1.1.2 version even documented if you make a search on the Django site. Is the 1.1.2 officialy supported? -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net -- You received this message because

Re: Django 1.1.2?

2010-05-17 Thread Antoni Aloy
2010/5/17 Russell Keith-Magee : > On Mon, May 17, 2010 at 6:56 PM, Antoni Aloy wrote: >> Hello, >> >> On the main Django page the official version is 1.1.1 but there is a >> new 1.1.2 version even documented if you make a search on the Django >> site.

Re: How to serve a static html file instead of rendering it as a template.

2010-06-11 Thread Antoni Aloy
Just modify your server configuration to directly serve the folder and do not sent it to django. It's the same you'll do for media files. Hope it helps! -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net -- You received this message because you are subscribed to

Re: i18n variable string translation

2010-06-16 Thread Antoni Aloy
Try to use lazy translation. El 16/06/2010 23:09, "Aaron" escribió: Well what happened was I have a forms.py which has CONSTANT = _("Hello World") x = {'var': CONSTANT } and in the django.po, I do have a translation msgid "Hello World" msgstr "xxx" But it doesn't show up on the website, all

Re: Deployment hesitation after James Bennett's post, WSGI or ...?

2010-06-25 Thread Antoni Aloy
so you can deploy small applications on cheap vps. But programing Django is addictive and for sure you'll finish with a dedicated server :) Best regards, -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net -- You received this message because you are subscribed to the Google

Re: News on every page

2010-07-08 Thread Antoni Aloy
I would use a custom template tag with cache El 08/07/2010 18:17, "Andy McKay" escribió: On 2010-07-08, at 9:07 AM, Martin Tiršel wrote: > 1.) Where is the right place to place news loader?... Middleware is not the appropriate place, a context processor is the appropriate place. -- Andy McKay,

Re: Most common uses of Django templates

2010-07-16 Thread Antoni Aloy
pport of Django templates and (the biggest one) the high machine requisites of Eclipse. Django templates shoud support Django tags and filters, HTML, CSS and Javascript, This is enougth. Code completion on Django tags would be a nice add on, but Eclipse templates is usually enought. Best regards, --

Re: Django IDE

2010-07-18 Thread Antoni Aloy
ng new each day, but it's a great tool. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.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...@googlegroups.com. T

Re: about some ideas for our very largest project

2010-07-21 Thread Antoni Aloy
ay if Django is the right technology for your project, but at least you can do your first prototype rally fast and test for yourself. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net -- You received this message because you are subscribed to the Google Groups &

Re: Demonstrate Development Server

2010-07-25 Thread Antoni Aloy
;> But something stops others to visit my site. I use Linux Fedora, maybe >> I should shot down SE Linux? >> Using your computer IP should work for an internal LAN. Using development server in a production enviroment is highly discouraged. If nobody can access throught your IP check

Re: 404.html error

2010-07-25 Thread Antoni Aloy
27;), >    (r'^polls/(?P\d+)/vote/$', 'vote'), > ) > > models.py : > > from django.db import models > > class Poll(models.Model): >    question = models.CharField(max_length=200) >    pub_date = models.DateTimeField('date published') >  

Re: Trying to customize a form and make it look like my design

2010-07-26 Thread Antoni Aloy
emplate with fields > and labels already there. > This is explained in the docs http://docs.djangoproject.com/en/dev/topics/forms/, see Customizing the form template Hope it helps! -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net -- You received this message because

Re: Django doesn't load css

2010-07-28 Thread Antoni Aloy
p, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net -- You received this message because you are s

Re: Django doesn't load css

2010-07-28 Thread Antoni Aloy
ple we've hardcoded the paths. > On the example you've linked: There is only a picture in the download > section, no code. Use subversion Luke :) Sorry I can't resist. ;) -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net -- You received this message b

Re: Django error can't adapt

2010-08-01 Thread Antoni Aloy
one django instance on mod_python? If this is the case it's a bug with mod_python and Postgres. Change to wsgi and the problem would dissapear. Hope it helps! -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net -- You received this message because you are subscribed to

Re: Flexigrid

2010-08-02 Thread Antoni Aloy
o return json data instead of html, which is covered in : http://docs.djangoproject.com/en/dev/topics/serialization/ http://chronosbox.org/blog/jsonresponse-in-django?lang=en http://stackoverflow.com/questions/414543/django-serialize-to-json etc. With jqrid I was able to map the Django model response dir

Re: Splitting LONGTEXT column to its own table?

2010-08-02 Thread Antoni Aloy
. > My first thought would be to backup the database, then put the project under South control. Then create a one-to-one relation between models and the possible create a upgrade script. Then, if necessary, you could create properties in the original model to map the names you have in your applicati

Re: djangoproject.com inaccessible?

2010-08-02 Thread Antoni Aloy
2010/8/2 creecode : > Hello all, > > djangoproject.com appears to be inaccessible to me.  Is anyone else > having problems?  Is anyone able to access it? > > Toodle-looo... > creecode > http://downforeveryoneorjustme.com/ works for me! -- Anto

Django template compilation

2010-08-13 Thread Antoni Aloy
emplate filters, ... But I'd like to know other's thoughts. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.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: How to troubleshoot path and permission problems?

2010-08-23 Thread Antoni Aloy
//www.comptechdoc.org/os/linux/usersguide/linux_ugfilesp.html. To server files the Apache server has to have read permisions. To create files it has to have write permisions. Best regards, -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net -- You received this message because yo

[Announcement] Vim for Python and Django

2010-09-26 Thread Antoni Aloy
. http://code.google.com/p/trespams-vim/ Happy coding! -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.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...@googleg

Re: Where do you put your business logic in django? Organizing big projects in django.

2010-09-27 Thread Antoni Aloy
service mapping is in its own Python packages. The Django urls and views just uses that package. Hope it helps! -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net -- You received this message because you are subscribed to the Google Groups "Django user

Re: IDE for Python/django

2010-09-27 Thread Antoni Aloy
esktop editor just try the one that fits better in your daily work, it could be as simlpe as gedit o kate or as bloated as Aptana. Just try and you'll find the best IDE *for you*. -- Antoni Aloy López Blog: http://trespams.com Site: http://apsl.net -- You received this message because

Re: What is the correct way to copy an object from one model to a similar model?

2010-09-29 Thread Antoni Aloy
this group, send email to django-us...@googlegroups.com. > To unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- Antoni Aloy López Blog: http://tr

  1   2   >