Change the event_list to be a dictionary of known_events and their docstrings
This commit is contained in:
parent
ad04b2a137
commit
2b3bd4f1f3
|
@ -17,9 +17,9 @@
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with deluge. If not, write to:
|
# along with deluge. If not, write to:
|
||||||
# The Free Software Foundation, Inc.,
|
# The Free Software Foundation, Inc.,
|
||||||
# 51 Franklin Street, Fifth Floor
|
# 51 Franklin Street, Fifth Floor
|
||||||
# Boston, MA 02110-1301, USA.
|
# Boston, MA 02110-1301, USA.
|
||||||
#
|
#
|
||||||
# In addition, as a special exception, the copyright holders give
|
# In addition, as a special exception, the copyright holders give
|
||||||
# permission to link the code of portions of this program with the OpenSSL
|
# permission to link the code of portions of this program with the OpenSSL
|
||||||
|
@ -41,15 +41,20 @@ and subsequently emitted to the clients.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
event_list = []
|
known_events = {}
|
||||||
|
|
||||||
class DelugeEventMetaClass(type):
|
class DelugeEventMetaClass(type):
|
||||||
"""
|
"""
|
||||||
This metaclass simply keeps a list of all events classes created.
|
This metaclass simply keeps a list of all events classes created.
|
||||||
"""
|
"""
|
||||||
def __init__(cls, name, bases, dct):
|
def __init__(cls, name, bases, dct):
|
||||||
event_list.append(name)
|
|
||||||
super(DelugeEventMetaClass, cls).__init__(name, bases, dct)
|
super(DelugeEventMetaClass, cls).__init__(name, bases, dct)
|
||||||
|
if name != "DelugeEvent":
|
||||||
|
classdoc = cls.__doc__.splitlines()
|
||||||
|
if classdoc[0].strip():
|
||||||
|
known_events[name] = classdoc[0].strip()
|
||||||
|
else:
|
||||||
|
known_events[name] = classdoc[1].strip()
|
||||||
|
|
||||||
class DelugeEvent(object):
|
class DelugeEvent(object):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue