Re: [Freeipa-devel] [PATCH] 54 Fix attempted write to attribute of read-only object

2011-11-01 Thread Jan Cholasta
Dne 14.10.2011 10:19, Alexander Bokovoy napsal(a): On Fri, 14 Oct 2011, Jan Cholasta wrote: Perform an HTTP request. -if self.ca_host == None: -self.ca_host = self._select_ca() +if self.ca_host is None: +object.__setattr__(self,

Re: [Freeipa-devel] [PATCH] 029 Page is cleared before it is visible

2011-11-01 Thread Petr Vobornik
On 10/31/2011 11:38 PM, Endi Sukma Dewata wrote: On 10/27/2011 4:57 AM, Petr Vobornik wrote: https://fedorahosted.org/freeipa/ticket/1459 Some issues: 1. The new clear() method is called during refresh(), so the facet with the old data is still shown for a brief moment before it's cleared.

[Freeipa-devel] Unifying the PKI and IPA Directory Server instances

2011-11-01 Thread Adam Young
We had a brief discussion on unifying the PKI and IPA Directory Server instances. Here are my notes from it. Please fill out the details and correct me if I've mis-stated anything below. Issues: 1. Both make changes to Config. One identified conflict is he configuration of the

Re: [Freeipa-devel] Unifying the PKI and IPA Directory Server instances

2011-11-01 Thread Adam Young
On 11/01/2011 12:12 PM, Adam Young wrote: We had a brief discussion on unifying the PKI and IPA Directory Server instances. Here are my notes from it. Please fill out the details and correct me if I've mis-stated anything below. Issues: 1. Both make changes to Config. One

Re: [Freeipa-devel] Unifying the PKI and IPA Directory Server instances

2011-11-01 Thread Richard Megginson
- Original Message - We had a brief discussion on unifying the PKI and IPA Directory Server instances. Here are my notes from it. Please fill out the details and correct me if I've mis-stated anything below. Issues: Do IPA and PKI use different suffixes? 1.

Re: [Freeipa-devel] Unifying the PKI and IPA Directory Server instances

2011-11-01 Thread Simo Sorce
On Tue, 2011-11-01 at 12:12 -0400, Adam Young wrote: We had a brief discussion on unifying the PKI and IPA Directory Server instances. Here are my notes from it. Please fill out the details and correct me if I've mis-stated anything below. Issues: 1. Both make changes to

Re: [Freeipa-devel] Unifying the PKI and IPA Directory Server instances

2011-11-01 Thread Simo Sorce
On Tue, 2011-11-01 at 12:40 -0400, Richard Megginson wrote: - Original Message - We had a brief discussion on unifying the PKI and IPA Directory Server instances. Here are my notes from it. Please fill out the details and correct me if I've mis-stated anything below.

[Freeipa-devel] [PATCH] 0293-Add-priority-to-pwpolicy-list

2011-11-01 Thread Adam Young
From e5ba2e46e50cac4f1fe7f86ad7dcee42518f985c Mon Sep 17 00:00:00 2001 From: Adam Young ayo...@redhat.com Date: Tue, 1 Nov 2011 12:51:05 -0400 Subject: [PATCH] Add priority to pwpolicy list First step to solving https://fedorahosted.org/freeipa/ticket/1977 --- install/ui/policy.js |2 +-

Re: [Freeipa-devel] Unifying the PKI and IPA Directory Server instances

2011-11-01 Thread Ade Lee
On Tue, 2011-11-01 at 12:49 -0400, Simo Sorce wrote: On Tue, 2011-11-01 at 12:40 -0400, Richard Megginson wrote: - Original Message - We had a brief discussion on unifying the PKI and IPA Directory Server instances. Here are my notes from it. Please fill out the

Re: [Freeipa-devel] [PATCH] 0293-Add-priority-to-pwpolicy-list

2011-11-01 Thread Endi Sukma Dewata
On 11/1/2011 11:53 AM, Adam Young wrote: ACK and pushed to master. -- Endi S. Dewata ___ Freeipa-devel mailing list Freeipa-devel@redhat.com https://www.redhat.com/mailman/listinfo/freeipa-devel

Re: [Freeipa-devel] [PATCH] 029 Page is cleared before it is visible

2011-11-01 Thread Endi Sukma Dewata
On 11/1/2011 7:37 AM, Petr Vobornik wrote: 1. The new clear() method is called during refresh(), so the facet with the old data is still shown for a brief moment before it's cleared. The clear() should be called before show(). However, if the pkey/filter is unchanged (check using

Re: [Freeipa-devel] Nesting widgets

2011-11-01 Thread Endi Sukma Dewata
So I decided to try to get an IP Address widget working. See the attached patch. It was fairly trivial. However, this widget is not really all that useful by itself. It would need to work as a part of a multivalued_text widget in order to replace the widget used on the dnsrecord page.