Find link in a "dynamic" page

2014-07-17 Thread Carlos Perche
Hello guys, could someone help me with this ... I am needing to find the link Ext # http://docs.sencha.com/ext/5.0.0/apidocs/source/Focusable.html-util-Focusable starting the url http://docs.sencha.com/ext/5.0.0/apidocs/ The problem is that when having to recover the contents of the page with

Override runserver django 1.7

2014-10-06 Thread Carlos Perche
Hello, why not is possible override the command runserver.py in my custom app in Django 1.7, like this # encoding: utf-8 from django.conf import settings from django.core.management.base import CommandError, BaseCommand # from django.contrib.staticfiles.management.commands.runserver import Comma

Re: Override runserver django 1.7

2014-10-06 Thread Carlos Perche
great, now it is working. but i have still a question, why the position in the installed_apps does not affect the migrate command and affect the runserver command ? thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from th

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

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

How to have two separate models authentication system in the same django project?

2014-06-10 Thread Carlos Perche
Hi, Is there a way to have multiple implementations of django's authentication/authorization system? In my practice blog-type site, I've implemented django's auth/auth system as is. I'd like to use the default implementation solely for administrators of the site. For users of the site, on the

Django Rest Framework create api-root ???

2014-06-20 Thread Carlos Perche
Using DjangoRestFramework, how can I create api-root with all urls for my apps Like this e.g. I have following apps core_api views models serializers urls equipments views models serializers urls companies views models serializers urls contacts views models seriali