Re: Agricultural and livestock project using python, django and next technologies.

2024-02-19 Thread Javi Lazaro
Hola Jorge, Estaría interesado en poder colaborar con vosotros con todo lo que tenga que ver con python, Django, Flesk, análisis Aquí tienes mi curriculum y trabajos de desde LinkedIn https://www.linkedin.com/in/javi-lazaro/, estaŕia encantado de hablar contigo sobre cualquier puesto. Un saludo

Re: Custom PG Range: where to place register_range() call?

2016-11-22 Thread Javi
I found a way to do it. For those interested take a look at https://github.com/djangonauts/django-hstore/blob/master/django_hstore/apps.py That example solves the problem for register_hstore() but it can be extrapolated for register_range() as well. The method is the following, in the file

Custom PG Range: where to place register_range() call?

2016-11-22 Thread Javi
I was following the documentation at https://docs.djangoproject.com/en/1.10/ref/contrib/postgres/fields/#defining-your-own-range-types in order to create a custom range. It says that I have to use the function register_range()

Re: Goodbye, Malcolm

2013-03-20 Thread Javi Romero
El martes, 19 de marzo de 2013 18:01:39 UTC+1, Jacob Kaplan-Moss escribió: > Hello fellow Djangonauts, > > We have difficult news: Malcolm Tredinnick has passed away. > > Malcolm was a long-time contributor to Django, a model community member, > a brilliant mind, and a friend. His

Re: Handling millions of rows + large bulk processing (now 700+ mil rows)

2012-07-21 Thread Javi Romero
I'm in :D El sábado, 30 de junio de 2012 17:10:27 UTC+2, Cal Leeming [Simplicity Media Ltd] escribió: > > Hi all, > > As some of you know, I did a live webcast last year (July 2011) on our LLG > project, which explained how we overcome some of the problems associated > with large data

Re: 1.4: Emails to BCC addresses not sent

2012-07-06 Thread Javi Romero
El viernes, 6 de julio de 2012 15:58:50 UTC+2, Thomas escribió: > > ... > > If that fails as well, I guess a ticket is in order, but like I said >> "works for me" (in version 1.4). >> If that doesn't fail, then make sure cco is filled. >> > fwiw it works for me too in 1.4 using virtualenv.

Re: 1.4: Emails to BCC addresses not sent

2012-07-06 Thread Javi Romero
El viernes, 6 de julio de 2012 12:59:23 UTC+2, Melvyn Sopacua escribió: > > On 6-7-2012 11:36, Javi Romero wrote: > > Does this sound like I should open a new ticket on the bugtracker or > does > > this work right for anyone else? > > It definitely works for

Re: 1.4: Emails to BCC addresses not sent

2012-07-06 Thread Javi Romero
, nrcpt=1 (queue active) Jul 6 03:20:21 mail6 postfix/smtp[315]: 1A216210E8AE: to=<t...@example.org>, relay=none, delay=57865, delays=57805/30/30/0, dsn=4.4.1, status=deferred (connect to example.org[192.0.43.10]: Connection timed out) Does this sound like I should open a new ticket

Re: 1.4: Emails to BCC addresses not sent

2012-07-06 Thread Javi Romero
El viernes, 6 de julio de 2012 02:18:43 UTC+2, Melvyn Sopacua escribió: > > On 5-7-2012 19:44, Javi Romero wrote: > > Hi list, I'm new around though I've been developing Django sites since > the > > early 1.0 releases > > > > I've been looking around for

1.4: Emails to BCC addresses not sent

2012-07-05 Thread Javi Romero
Hi list, I'm new around though I've been developing Django sites since the early 1.0 releases I've been looking around for problems regarding email sending to BCC addresses but can't find anything that explains what I'm seeing. I have a ModelForm that renders a pretty simple contact form, and

Internationalization

2009-09-11 Thread Javi
Hello guys, I'm trying to use some translations in my project. I've read the doc about i18n, but I must be missing in some step. I've embedded translation strings in my templates. I've got translations for those strings in the languages I want to support (makemessages and compilemessages) and

Re: 'NoneType' object is not iterable

2008-11-12 Thread Javi
It works!! Thank you very much!! The django.root PythonOption stripped the initial "/" Greetings. On Nov 11, 11:54 pm, Rajesh Dhawan <[EMAIL PROTECTED]> wrote: > Hi Javi, > > > I've tried putting FORCE_SCRIPT_NAME="" but everything continues at > > th

Re: 'NoneType' object is not iterable

2008-11-10 Thread Javi
an <[EMAIL PROTECTED]> wrote: > Hi Javi, > > > > > Thanks but I'd already tried it. I don't understand why in the > > production server is not added the preceeding slash to the url. My > > urls.py is as follows: > > urlpatterns = patterns('candidate

Re: 'NoneType' object is not iterable

2008-11-04 Thread Javi
e > middleware class you're reading about is for trailing slashes, not > preceeding ones. > > On Nov 4, 9:35 am, Javi <[EMAIL PROTECTED]> wrote: > > > Hello everybody! > > I'm using django 1.0-1 version and Apache as a server web. In the dev > > server everyt

'NoneType' object is not iterable

2008-11-04 Thread Javi
Hello everybody! I'm using django 1.0-1 version and Apache as a server web. In the dev server everything works fine but in the production server I get the following error when I ask for a url: NoneType' object is not iterable Request Method: POST Request URL:http://localhostenter/

Re: Problems serving static files with Apache and mod_python

2008-10-15 Thread Javi
change the href to get the static content be loaded? On Oct 15, 12:02 am, bruno desthuilliers <[EMAIL PROTECTED]> wrote: > On 14 oct, 20:28, Javi <[EMAIL PROTECTED]> wrote: > > > Dear group, > > > sorry for starting another thread on this issue. I've seen l

Problems serving static files with Apache and mod_python

2008-10-14 Thread Javi
Dear group, sorry for starting another thread on this issue. I've seen loads of messages with similar but particular problems. My system: * apache2 (2.2.9-10) * libapache2-mod-python (3.3.1-5) * python-django (1.0-1) My project is located at: ~/Desktop/csl2-sdocente/src/candidateTool and the