Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / vigiboard / controllers / plugins / id.py @ a2fa6a5b

History | View | Annotate | Download (1.3 KB)

1 15b98053 Francois POIROTTE
# -*- coding: utf-8 -*-
2 4febadf0 Francois POIROTTE
# vim:set expandtab tabstop=4 shiftwidth=4:
3 a77de887 Francois POIROTTE
################################################################################
4
#
5 a2744508 Aurelien BOMPARD
# Copyright (C) 2007-2012 CS-SI
6 a77de887 Francois POIROTTE
#
7
# This program is free software; you can redistribute it and/or modify
8
# it under the terms of the GNU General Public License version 2 as
9
# published by the Free Software Foundation.
10
#
11
# This program is distributed in the hope that it will be useful,
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
# GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
################################################################################
20
21 15b98053 Francois POIROTTE
"""
22 4febadf0 Francois POIROTTE
Un plugin pour VigiBoard qui ajoute une colonne avec l'identifiant
23
de l'événement corrélé.
24
Ce plugin n'a d'intérêt que pour débuguer l'application.
25 15b98053 Francois POIROTTE
"""
26
27 94f31908 Francois POIROTTE
from vigiboard.controllers.plugins import VigiboardRequestPlugin
28 15b98053 Francois POIROTTE
29
class PluginId(VigiboardRequestPlugin):
30 4febadf0 Francois POIROTTE
    """Plugin de debug qui affiche l'identifiant de l'événement corrélé."""
31 a2fa6a5b Francois POIROTTE
    def get_data(self, event):
32
        return {
33
            'id': event[0].idcorrevent,
34
        }