status of multiple database schemas in Django

2013-05-27 Thread Fabio Caritas Barrionuevo da Luz
Hi, this[1][2] is the best solution to the problem of multiple database schemas? Is there any idea when this feature will be supported by Django's ORM? ps: Sorry for my ugly english. [1] https://code.djangoproject.com/ticket/6148 [2] https://github.com/cbmi/django/commit/4dccd11d927898523e4ed

Re: How to insert a inline form inside a form wizard?

2013-10-24 Thread Fabio Caritas Barrionuevo da Luz
Hello Russel. First, sorry for reviving this topic. Thanks for the comment on this topic, however, this matter is still not clear to me. You will also create a blog post explaining the details of CookieWizardView / SessionWizardView + formset and inlineformset? I am a relatively new django Us

CookieWizardView / SessionWizardView + extra fields + dynamic steps + formset and/or inlineformset?

2013-10-26 Thread Fabio Caritas Barrionuevo da Luz
Hello everyone Does anyone have any idea or any example to create a CookieWizard that the first step has some extra fields and the next steps based on the same extra fields, are created or updated automatically steps with formset or inlineformset? I am a relatively new django User. My curren

Re: [ANNOUNCE] Django 1.8 alpha 1 released

2015-01-16 Thread Fabio Caritas Barrionuevo da Luz
Em sexta-feira, 16 de janeiro de 2015 20:10:37 UTC-3, Tim Graham escreveu: > > We've made the first release on the way to Django's next long-term support > release, Django 1.8! With only two and a half months until the scheduled > final release, we'll need prompt testing from the community to en

Re: not thread-safe function can break a django application?

2014-11-27 Thread Fabio Caritas Barrionuevo da Luz
Collin, Thanks for the explanation. Em segunda-feira, 24 de novembro de 2014 20h01min55s UTC-3, Collin Anderson escreveu: > > > > On Saturday, November 22, 2014 4:46:56 AM UTC-5, Fabio Caritas Barrionuevo > da Luz wrote: >> >> I was trying to answer a question in a B

Re: create unmanaged model to oracle view/synonym

2015-01-02 Thread Fabio Caritas Barrionuevo da Luz
> Hi Fábio, >> >> On Wednesday, December 31, 2014 6:05:05 PM UTC+2, Fabio Caritas >> Barrionuevo da Luz wrote: >>> >>> Hello, is possible with Django 1.7 create a unmanaged Django model for >>> Oracle database View? >>> >>>

Re: create unmanaged model to oracle view/synonym

2015-01-02 Thread Fabio Caritas Barrionuevo da Luz
ocs.djangoproject.com/en/1.7/ref/databases/#oracle-notes > [2] https://docs.djangoproject.com/en/1.7/howto/legacy-databases/ > > > On Thu, Jan 1, 2015 at 2:40 PM, Shai > > wrote: > >> Hi Fábio, >> >> On Wednesday, December 31, 2014 6:05:05 PM UTC+2, Fabio Carita

Re: create unmanaged model to oracle view/synonym

2015-01-02 Thread Fabio Caritas Barrionuevo da Luz
om/en/1.7/ref/databases/#oracle-notes > [2] https://docs.djangoproject.com/en/1.7/howto/legacy-databases/ > > > On Thu, Jan 1, 2015 at 2:40 PM, Shai > > wrote: > >> Hi Fábio, >> >> On Wednesday, December 31, 2014 6:05:05 PM UTC+2, Fabio Caritas >>

Re: dashboard for user profile

2015-01-04 Thread Fabio Caritas Barrionuevo da Luz
Em sexta-feira, 13 de julho de 2012 09h14min21s UTC-3, psychok7 escreveu: > > yes i understand that, but i am asking if there is a pluggable app that > does that for us with some jquery and stuff. > > as i said theres is django-profiles, but i think its poorly documented and > i am not able to

Re: [Announce] Django Graphos - Django charting made *really* easy

2013-11-21 Thread Fabio Caritas Barrionuevo da Luz
These modifications made by "anentropic" are good too. https://github.com/anentropic/django-graphos/tree/a7bae2c0e67d6f8deda1a75fac8c1574ab1b884c -- You received this message because you are subscribed to the Google Groups "Django users

Re: Class-based app (like AdminSite) idea

2013-12-18 Thread Fabio Caritas Barrionuevo da Luz
Omoshiroi. Register your app in django-packages[1] [1] https://www.djangopackages.com Em terça-feira, 17 de dezembro de 2013 13h44min11s UTC-3, Shinya Okano escreveu: > > I have implemented the idea to create a class-based applications (like > AdminSite). > > https://pypi.python.org/pypi/djang

Re: Django Site/Docs/Tutorials translation

2013-12-18 Thread Fabio Caritas Barrionuevo da Luz
The translation project is hosted in Transifex.com [1][2] [1] https://www.transifex.com/projects/p/django-docs/language/pt_BR/ [2] https://www.transifex.com/projects/p/django/language/pt_BR/members/ Em segunda-feira, 16 de dezembro de 2013 09h20min40s UTC-3, Lucas Infante escreveu: > > Hello guy

Re: Where exactly in the django source code, the default permissions are created?

2013-12-20 Thread Fabio Caritas Barrionuevo da Luz
Have had looked Those classes, However, Still Could Not see Which line or lines in the source code the default permissions are created. Is there anybody from the Core Developers that could explain where exactly they are created? Sorry for English, I speak Portuguese, it was translated by Googl

Re: Where exactly in the django source code, the default permissions are created?

2013-12-20 Thread Fabio Caritas Barrionuevo da Luz
Thanks Felipe, this is exactly what I was looking for. My goal is to create a new default permission for all my models without having to declare it explicitly at all. It would be something like: permissions = ( ('view_model_class_name', _ ('View model_class_name')), ) I wonder why t

Django and default permissions?

2014-01-10 Thread Fabio Caritas Barrionuevo da Luz
Why of the core developers of Django does not include a "view only" permission by default? Django creates by default has permissions add, change and delete, but does not include permission to view. for example, the user can only view a form, but can not edit it, ie, the save will be disabled,

Re: Using a paginator with two models in the same view

2014-02-12 Thread Fabio Caritas Barrionuevo da Luz
Please, if you can solve, create a post on a blog or a gist.github.com to resolution, and send to this topic. This can be useful for other people. XD -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop recei

What do you think django-pony-forms

2014-03-14 Thread Fabio Caritas Barrionuevo da Luz
Hello everyone, I found django-pony-forms[1] recently. I found it very interesting proposal by adding the possibility of better defining how a form is rendered without having to use a templatetag or something, and also because it can make an individual customization of the form a little more "

Re: Extended profile not being saved django-allauth

2014-03-17 Thread Fabio Caritas Barrionuevo da Luz
Voyager, Have you tried putting related_name in the Foreign Key? > class UserProfile(models.Model): > # This line is required. Links UserProfile to a User model instance. > user = models.ForeignKey(User, unique=True, > *related_name='userprofile'*) > > -- You received this messag

Re: validate answers from a detail view

2014-04-13 Thread Fabio Caritas Barrionuevo da Luz
I think this would be facilitated if the FormWizard possessed a confirmation step. There is a ticket open on this exact feature https://code.djangoproject.com/ticket/21644 Em sábado, 12 de abril de 2014 14h28min01s UTC-3, Brad Rice escreveu: > > I'm using a Class based Generic Detail View to s

error in "makemessages" command on latest django version (1.8dev)

2014-04-30 Thread Fabio Caritas Barrionuevo da Luz
hello, was testing in the latest version of Django[1] directly from Github and am having this problem *optparse.OptionConflictError: option -e/--extension: conflicting option string(s): -e* That would be a bug or am I doing something wrong In this link you can see all the steps I did to get t

Re: error in "makemessages" command on latest django version (1.8dev)

2014-05-02 Thread Fabio Caritas Barrionuevo da Luz
it was really a bug fixed in https://github.com/django/django/commit/d1799233f46c39379fe429a4ece128d96b128006 Thanks Em quarta-feira, 30 de abril de 2014 18h52min41s UTC-3, Fabio Caritas Barrionuevo da Luz escreveu: > > hello, was testing in the latest version of Django[1] directl

Re: error in "makemessages" command on latest django version (1.8dev)

2014-05-02 Thread Fabio Caritas Barrionuevo da Luz
Sorry, I did not see there was already an open issue to handle this problem https://code.djangoproject.com/ticket/22328 Em quarta-feira, 30 de abril de 2014 18h52min41s UTC-3, Fabio Caritas Barrionuevo da Luz escreveu: > > hello, was testing in the latest version of Django[1] directl

FormWizard confirmation step logic and Allow dynamic form classes with WizardView

2014-05-07 Thread Fabio Caritas Barrionuevo da Luz
Hello django users. About the ticket 21644[1] - "FormWizard needs confirmation step logic" and ticket 21667[2] - "Allow dynamic form classes with WizardView" I would like your opinions about the proposed implementation by user nickname123[3]. Remember that an implementation is in very early st

Re: FormWizard confirmation step logic and Allow dynamic form classes with WizardView

2014-05-12 Thread Fabio Caritas Barrionuevo da Luz
/thenewguy/django_formwizard_mixins/pull/2 Em quarta-feira, 7 de maio de 2014 17h43min57s UTC-3, Fabio Caritas Barrionuevo da Luz escreveu: > > Hello django users. > > About the ticket 21644[1] - "FormWizard needs confirmation step logic" > and ticket 21667[2] - "A

inspectdb and postgresql schemas support - ticket #22673

2014-05-21 Thread Fabio Caritas Barrionuevo da Luz
*Django not provides way to use inspectdb in a postgresql schema with name different of "public"* If you think this is an important feature and should be included in django, Please send your considerations and use cases to the topic: https://groups.google.com/forum/#!topic/django-developers/lSH

Re: How to install psycopg2 using Pip?

2014-06-04 Thread Fabio Caritas Barrionuevo da Luz
If Ubuntu 12.04 or higher do: sudo apt-get install libpq-dev Em quinta-feira, 24 de março de 2011 12h01min43s UTC-3, Andre Lopes escreveu: > > Hi, > > This question is not directly related with Django, but with Python. > > I have installed "virtualenv" to have a virtual environment. Now I >

Re: django-allauth--"cannot import name SignupForm"

2014-06-13 Thread Fabio Caritas Barrionuevo da Luz
Please, show me the code. put the code and all traceback of the error on gist.github.com and send gist reference link here. Em quinta-feira, 12 de junho de 2014 11h15min37s UTC-3, willyhakim escreveu: > > Good morning the good people of django. > > > I customized django-allauth signup page with

Re: Introduction to Pulpo-Forms

2015-07-31 Thread Fabio Caritas Barrionuevo da Luz
interesting, thanks for sharing. personally, I think that the organization of files on package is somewhat confusing. said that, you can use a template (skeleton) as a base to create and better organize the package. I like these two for a django package: https://github.com/pydanny/cookiecutte

Re: Open Source IDE to start with Django Web development

2019-11-06 Thread Fabio Caritas Barrionuevo da Luz
> > But free edition of PyCharm expires after 1 month or so. > This is not entirely true. The Pycharm has two versions: Pycharm Professional and Pycharm Community Pycharm Professional has a free trial that expires after 1 month. After the trial time, you must purchase a license to continue to