Re: py2neo - how to get a node

2015-06-12 Thread Ramiro Morales
On Jun 12, 2015 7:28 PM, "Shekar Tippur" wrote: > > Hello, > > I am trying to use py2neo (http://py2neo.org/2.0/ext/ogm.html). > I am having trouble looking up a node. Wouldn't this post be more appropriate for the py2neo users mailing list or similar? Just in case, you

py2neo - how to get a node

2015-06-12 Thread Shekar Tippur
Hello, I am trying to use py2neo (http://py2neo.org/2.0/ext/ogm.html). I am having trouble looking up a node. Here is my code: lookupname="Shekar" Shekar=store.load_indexed('Person','Name','Shekar',Person) This returns a list. I want the complete object so that I can use in a relationship

Re: HTTPS on docs.djangoproject.com

2015-06-12 Thread Davor Lučić
Cool, thank you On 12 June 2015 at 21:13, Markus Holtermann wrote: > Hey, > > Not on djangoproject.com but you can use http://django.readthedocs.org/ > > /Markus > > On June 12, 2015 8:32:09 PM GMT+02:00, "Davor Lučić" > wrote: > >Hello, > > > >Is

Re: HTTPS on docs.djangoproject.com

2015-06-12 Thread Markus Holtermann
Hey, Not on djangoproject.com but you can use http://django.readthedocs.org/ /Markus On June 12, 2015 8:32:09 PM GMT+02:00, "Davor Lučić" wrote: >Hello, > >Is it possible to request documentation on docs.djangoproject.com >without >HTTPS? > >I work for corporation that

Django/djcelery 1.8.2 AppRegistryNotReady: Translation infrastructure cannot be initialized

2015-06-12 Thread Manas Hardas
Sorry if this is not an appropriate place for a django/djcelery related error. I am getting the following error: File "/Library/Python/2.7/site-packages/Django-1.8.2-py2.7.egg/django/utils/translation/trans_real.py", line 164, in _add_installed_apps_translations"The translation

HTTPS on docs.djangoproject.com

2015-06-12 Thread Davor Lučić
Hello, Is it possible to request documentation on docs.djangoproject.com without HTTPS? I work for corporation that either blocks or uses MITM certs for HTTPS and I am unable to access Django documentation since its forcing me to use HTTPS even when i request HTTP. Thank you, Davor -- You

Re: Squashed migration

2015-06-12 Thread Carl Meyer
Hi Cherie, On 06/12/2015 06:32 AM, Cherie Pun wrote: > Thanks for your replies! I am still on Django 1.7 but we are hoping to > upgrade to 1.8 soon. I manage to use the squashed migrations when > creating the test database now, Do you know why it didn't work initially? That'd be useful to know,

Re: Squashed migration

2015-06-12 Thread Carl Meyer
On 06/12/2015 06:32 AM, aRkadeFR wrote: > You need to delete your old migrations so it uses only the squashed > one after. No, the squashed migration should be used in place of the old ones for any new database, even if the old ones are still present. This is the point of the squashmigrations

What are some good 3rd party django apps to build a user dashboard and folder management (similar to a Google drive account)

2015-06-12 Thread Shanu Kumar
Hi, I have been trying to find an app which helps build a user-specific file/folder management system. An example for this could be an app that is exactly similar to your google drive account. The operations performed by the app could be a subset of what a google drive account does: 1.

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

2015-06-12 Thread David Wong
127.0.0.1只能本机访问,其他网络终端要访问就得使用更大范围的网络段。如果两台机器同在一个局域网,那可以用局域网IP,如192.168.1.11这样的,如果不在局域网内那么就得用公网IP。前提是服务器上的django服务端口得绑定在你所访问的ip上 发自我的 iPhone > 在 2015年6月11日,22:45,Sergiy Khohlov 写道: > > 127.0.0.1 is always your local PC. > you should use another one interface for

Re: Squashed migration

2015-06-12 Thread aRkadeFR
Hey, You need to delete your old migrations so it uses only the squashed one after. In the documentation: "This enables you to squash and not mess up systems currently in production that aren’t fully up-to-date yet. The recommended process is to squash, keeping the old files, commit and

Re: Squashed migration

2015-06-12 Thread Cherie Pun
Hi, Thanks for your replies! I am still on Django 1.7 but we are hoping to upgrade to 1.8 soon. I manage to use the squashed migrations when creating the test database now, but there's syntax error in the automatically generated squash migration. The error occurs on the line on which it

Re: Squashed migration

2015-06-12 Thread Filipe Ximenes
Hi Cherie, maybe you can run your tests without the migrations. This django app may solve your problem: https://github.com/henriquebastos/django-test-without-migrations/ On Fri, Jun 12, 2015 at 6:38 AM, Cherie Pun wrote: > Hi, > > I have trying to experiment with

Re: Squashed migration

2015-06-12 Thread Erik Cederstrand
> Den 12/06/2015 kl. 11.38 skrev Cherie Pun >: > > Hi, > > I have trying to experiment with squashmigration to see if it will make it > faster to build the database when running tests. So I have squashed the > migrations following

Re: Django users Group admin

2015-06-12 Thread Russell Keith-Magee
Hi Eike, I'm an admin; feel free to mail me any list admin requests. Yours, Russ Magee %-) On Friday, June 12, 2015, Eike Post wrote: > Hello Django users, > does anybody of you know how to get in touch with the Django user group > admin? > I tried via contact admin and

Django users Group admin

2015-06-12 Thread Eike Post
Hello Django users, does anybody of you know how to get in touch with the Django user group admin? I tried via contact admin and tried emailing to these emails: django-users+ad...@googlegroups.com django-users+ow...@googlegroups.com. But nothing worked so far. Any suggestions? -- You

Squashed migration

2015-06-12 Thread Cherie Pun
Hi, I have trying to experiment with squashmigration to see if it will make it faster to build the database when running tests. So I have squashed the migrations following the instructions on the Django website. However when I run the tests, it still uses the original migrations. I thought

Re: Django plugin

2015-06-12 Thread 'Tom Evans' via Django users
On Thu, Jun 11, 2015 at 8:02 PM, Andreas Kuhne wrote: > 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