Re: neo4django - error cannot import name 'transactional'

2015-06-11 Thread Shekar Tippur
Found he answer. Looks like neo4django is not supported in hte latest version of django. Infact development has stopped for a while on this plugin. Looked to be very promising. - S On Thursday, 11 June 2015 10:50:46 UTC-7, Shekar Tippur wrote: > > > Hello, > > I am trying to use neo4django. I a

Re: Desarrollador Python/Django

2015-06-11 Thread Rafael E. Ferrero
Hello Isabel. I see that the position it's in Sevilla, spain? Are you searching for Remote work or On Site work? Remember that this is an International mailing list so it's better if you can specify this. Cheers!! -- Rafael E. Ferrero 2015-06-11 9:56 GMT-03:00 Isabel Romero Casado : > http://w

Re: Desarrollador Python/Django

2015-06-11 Thread Cesar Mojarro
my resume On Thu, Jun 11, 2015 at 7:56 AM, Isabel Romero Casado wrote: > http://www.emergya.es/ofertas/desarrollador-senior-pythondjango > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving

Django plugin

2015-06-11 Thread Andreas Kuhne
Hi all, I was wondering if there is a plugin application for Django. What I want to accomplish is react to different kinds of events on my models and then create plugins on the fly for them. The system I am working on has for example an Order model. When a new Order is created, I want to send a n

neo4django - error cannot import name 'transactional'

2015-06-11 Thread Shekar Tippur
Hello, I am trying to use neo4django. I am at the getting started stage in the document: https://neo4django.readthedocs.org/en/latest/getting-started.html I am getting an error when I run it - cannot import name 'transactional' Wondering if someone can shed some light on this. I am using djan

Re: 想用中文说清楚:我在远程工作机服务器上建立了django框架,想启动web server ,启动成功,但是无法打开127.0.0.1:8000 ,中间端口转接该怎么做

2015-06-11 Thread Sergiy Khohlov
127.0.0.1 is always your local PC. you should use another one interface for accessing from remote host. if your local PC has IP 192.168.0.10 right syntax is django-admin.py runserver 192.168.0.10:8000 Many thanks, Serge +380 636150445 skype: skhohlov On Thu, Jun 11, 2015 at 5:26 PM, Net

Re: 想用中文说清楚:我在远程工作机服务器上建立了django框架,想启动web server ,启动成功,但是无法打开127.0.0.1:8000 ,中间端口转接该怎么做

2015-06-11 Thread Neto
通过远程计算机,您无法打开地址?如果是这样,你应该用你的电脑的IP要访问。 -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send emai

Desarrollador Python/Django

2015-06-11 Thread Isabel Romero Casado
http://www.emergya.es/ofertas/desarrollador-senior-pythondjango -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To pos

Re: heavy refactoring

2015-06-11 Thread Mike Dewhirst
On 11/06/2015 6:02 PM, Andre Avorio wrote: Hi Mike, I had the exact same problem and after investigating I ended up creating a new app from scratch and porting the code and data across. I don't remember finding any specific documentation on this on Django's website. Did I miss something, or shou

想用中文说清楚:我在远程工作机服务器上建立了django框架,想启动web server ,启动成功,但是无法打开127.0.0.1:8000 ,中间端口转接该怎么做

2015-06-11 Thread durong
我在远程工作机服务器上建立了django框架,想启动web server ,启动成功,但是无法打开127.0.0.1:8000 ,中间端口转接该怎么做? 我用pc在办公室登录远程服务器A1,通过中转机A1登录到服务器A2,在A2上搭建了django框架,启动web服务器,想要打开http://127.0.0.1:8000的web界面,总是没办法打开。这种情况该怎么处理 -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscr

Using sites to control models

2015-06-11 Thread Larry Martell
We have an app that is installed at many different sites, and these sites do not all have the same database schema. This means that we need to have different models at different sites. (The code itself is not an issue as it's all introspective.) I'm looking for info on how folks here have dealt wit

Re: heavy refactoring

2015-06-11 Thread Andre Avorio
Hi Mike, I had the exact same problem and after investigating I ended up creating a new app from scratch and porting the code and data across. I don't remember finding any specific documentation on this on Django's website. Did I miss something, or should we consider adding a couple of notes on

Re: How to DRY, define a set of model-fields and reuse them as multiple instances

2015-06-11 Thread James Schneider
Are you trying to create something like a dynamic model, where the model attributes are named on the fly? Do you have one central model that needs to be able to have FK's to various other similar but distinct models? I think the better question is "what problem are you trying to solve?" > I just