Re: [Freeipa-devel] [PATCH] jderose 019 remove some cruft

2009-10-14 Thread Jason Gerard DeRose
On Wed, 2009-10-14 at 17:21 -0400, Rob Crittenden wrote:
> Jason Gerard DeRose wrote:
> > On Tue, 2009-10-13 at 22:45 -0600, Jason Gerard DeRose wrote:
> >> This removes the util.add_global_options() function and the
> >> frontend.Application class, neither of which are now needed.
> > 
> > And *this* actually attaches the patch.  ;)
> >
> 
> ack

pushed to master.

___
Freeipa-devel mailing list
Freeipa-devel@redhat.com
https://www.redhat.com/mailman/listinfo/freeipa-devel


Re: [Freeipa-devel] [PATCH] jderose 020 Make plugin browser show plugin parent class

2009-10-14 Thread Jason Gerard DeRose
On Wed, 2009-10-14 at 17:21 -0400, Rob Crittenden wrote:
> Jason Gerard DeRose wrote:
> > It's very helpful if the plugin browser shows the parent class (or
> > classes) that a plugin subclasses from.  This small patch adds this
> > feature.
> 
> ack

pushed to master.

___
Freeipa-devel mailing list
Freeipa-devel@redhat.com
https://www.redhat.com/mailman/listinfo/freeipa-devel


Re: [Freeipa-devel] [PATCH] jderose 019 remove some cruft

2009-10-14 Thread Rob Crittenden

Jason Gerard DeRose wrote:

On Tue, 2009-10-13 at 22:45 -0600, Jason Gerard DeRose wrote:

This removes the util.add_global_options() function and the
frontend.Application class, neither of which are now needed.


And *this* actually attaches the patch.  ;)



ack


smime.p7s
Description: S/MIME Cryptographic Signature
___
Freeipa-devel mailing list
Freeipa-devel@redhat.com
https://www.redhat.com/mailman/listinfo/freeipa-devel

Re: [Freeipa-devel] [PATCH] jderose 020 Make plugin browser show plugin parent class

2009-10-14 Thread Rob Crittenden

Jason Gerard DeRose wrote:

It's very helpful if the plugin browser shows the parent class (or
classes) that a plugin subclasses from.  This small patch adds this
feature.


ack


smime.p7s
Description: S/MIME Cryptographic Signature
___
Freeipa-devel mailing list
Freeipa-devel@redhat.com
https://www.redhat.com/mailman/listinfo/freeipa-devel

[Freeipa-devel] [PATCH] jderose 020 Make plugin browser show plugin parent class

2009-10-14 Thread Jason Gerard DeRose
It's very helpful if the plugin browser shows the parent class (or
classes) that a plugin subclasses from.  This small patch adds this
feature.
>From 8dc21d6f30d1466f07b38e0d015de39a8c0d29d2 Mon Sep 17 00:00:00 2001
From: Jason Gerard DeRose 
Date: Wed, 14 Oct 2009 15:08:30 -0600
Subject: [PATCH] Make plugin browser show plugin parent class

---
 ipalib/plugable.py  |3 +++
 ipawebui/widgets.py |5 +
 2 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/ipalib/plugable.py b/ipalib/plugable.py
index dceb41f..12746c1 100644
--- a/ipalib/plugable.py
+++ b/ipalib/plugable.py
@@ -163,6 +163,9 @@ class Plugin(ReadOnly):
 self.name = cls.__name__
 self.module = cls.__module__
 self.fullname = '%s.%s' % (self.module, self.name)
+self.bases = tuple(
+'%s.%s' % (b.__module__, b.__name__) for b in cls.__bases__
+)
 self.doc = inspect.getdoc(cls)
 if self.doc is None:
 self.summary = '<%s>' % self.fullname
diff --git a/ipawebui/widgets.py b/ipawebui/widgets.py
index 71eee92..74b9d7e 100644
--- a/ipawebui/widgets.py
+++ b/ipawebui/widgets.py
@@ -58,6 +58,11 @@ class IPAPlugins(base.Container):
 
 
 
+
+base(s)
+
+
+
 
 docstring
 
-- 
1.6.3.3

___
Freeipa-devel mailing list
Freeipa-devel@redhat.com
https://www.redhat.com/mailman/listinfo/freeipa-devel

[Freeipa-devel] [PATCH] 296 work with newer schema layout of 389-DS

2009-10-14 Thread Rob Crittenden
The HEAD branch of upstream of 389-DS has lots new schema stuff. We have 
to work around some incompatibilities with the DNS schema in 
05rfc2247.ldif but this isn't required in the HEAD, so don't fail if we 
can't replace this file. It isn't needed in newer versions of DS.


rob


freeipa-296-ds.patch
Description: application/mbox


smime.p7s
Description: S/MIME Cryptographic Signature
___
Freeipa-devel mailing list
Freeipa-devel@redhat.com
https://www.redhat.com/mailman/listinfo/freeipa-devel