Fwd: [cx-oracle-users] cx_Oracle 5.1.3

2014-05-24 Thread Shai Berger
Hi all, This release of cx_Oracle includes fixes the segfaults encountered with Python3, and includes significant performance improvements for 64-bit platforms (where long is 64-bits, so, specifically, Windows not included). Strongly recommended for all Oracle users. Have fun, Shai. -

Re: AttributeError when trying to reference ForeignKey attributes

2014-05-24 Thread Kelvin Wong
Might try removing the default from x_pos then try setting it by overriding the save method https://docs.djangoproject.com/en/1.4/topics/db/models/#overriding-predefined-model-methods K On Saturday, May 24, 2014 8:28:17 PM UTC-7, Robbie Edwards wrote: > > Hi, I have some code like such... > > >

AttributeError when trying to reference ForeignKey attributes

2014-05-24 Thread Robbie Edwards
Hi, I have some code like such... def gen_planet_pos( max_dim ): return random.randint( 0, max_dim ) class Universe( models.Model ): width = models.IntegerField( default=100 ) ... class Planet( models.Model ): universe = models.ForeignKey( Universe ) ... x_pos = models

Re: Development SaaS with Django

2014-05-24 Thread Aaron C. de Bruyn
The best way to find out would be to download django-cms and django-shop and test them out for yourself to make sure they meet your requirements. Or hire a developer to research your requirements for you. My guess would be 'no', because their goal isn't to be multi-tenant apps. -A On Sat, May

why I change url is showing other user's data?

2014-05-24 Thread Carlos Perche
for exemple, I have following url: http://tenant.com:8000/accounts/test1/edit/ when my user right authenticated is test1, but if I change the url to http://tenant.com:8000/accounts/admin/edit/, the data of user admin is showing in profile form and if I change and save this form the admin's dat

ASP .NET web service and Django

2014-05-24 Thread Ariel Calzada
hi .net -> django you should look tastypie django -> asp you should use python library named request regards fron colombia El sábado, 24 de mayo de 2014, shar100101 > escribió: > Hi, > > How to create and send HTTP request from ASP .NET web service with POST > data in it, to Django, an

Development SaaS with Django

2014-05-24 Thread Carlos Perche
Hello, I need to create an app like study case django-cms Dataprotect (http://www.dataprotectcloud.com/), it need be an SaaS with user accounts, plans and pricing, multi tenant, etc. I want to know if Django-CMS and DjangoShop do have these native resources. Or if you can help me with built ref

ASP .NET web service and Django

2014-05-24 Thread shar100101
Hi, How to create and send HTTP request from ASP .NET web service with POST data in it, to Django, and get HTTP responce from Django to web service ? Does anyone have a simple example of this? Regards, Dušan -- You received this message because you are subscribed to the Google Groups "Django

Re: BookMarker Project - Opening local files on localhost through Django generated pages

2014-05-24 Thread Aseem Bansal
Just wanted to say that window.open failed for locally stored files. Guess browser security is good in Chrome. -- 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 d

Re: BookMarker Project - Opening local files on localhost through Django generated pages

2014-05-24 Thread Aseem Bansal
I am averse to doing that because I have offline bookmarks like the Python documentation also which contain a lot of links. If I rendered it as text then this problem will go in an loop. The browser will not allow any of the rendered links on that page to be opened. So a solution is needed. That