Project

General

Profile

Revision b373a5de

IDb373a5def4f6f514af268d13807c766645a62222
Parent 8c4b2f70
Child 70320f38

Added by Aurelien BOMPARD about 13 years ago

Ajout des copyrights manquants

git-svn-id: https://vigilo-dev.si.c-s.fr/svn@6846 b22e2e97-25c9-44ff-b637-2e5ceca36478

View differences:

setup.py
1 1
#!/usr/bin/env python
2 2
# -*- coding: utf-8 -*-
3 3
# vim:set expandtab tabstop=4 shiftwidth=4:
4
# Copyright (C) 2006-2011 CS-SI
5
# License: GNU GPL v2 <http://www.gnu.org/licenses/gpl-2.0.html>
4 6

  
5 7
import os
6 8

  
vigiboard/config/deployment.ini_tmpl
3 3
#
4 4
# The %(here)s variable will be replaced with the parent directory of this file
5 5
#
6
# Copyright (C) 2006-2011 CS-SI
7
# License: GNU GPL v2 <http://www.gnu.org/licenses/gpl-2.0.html>
8

  
6 9
[DEFAULT]
7 10
# WARGING == If debug is not set to false, you'll get the interactive
8 11
# debugger on production, which is a huge security hole. 
vigiboard/controllers/feeds.py
1 1
# -*- coding: utf-8 -*-
2
# Copyright (C) 2006-2011 CS-SI
3
# License: GNU GPL v2 <http://www.gnu.org/licenses/gpl-2.0.html>
4

  
2 5
"""Sample controller module"""
3 6

  
4 7
import logging
vigiboard/lib/dateformat.py
1 1
# -*- coding: utf-8 -*-
2
# Copyright (C) 2006-2011 CS-SI
3
# License: GNU GPL v2 <http://www.gnu.org/licenses/gpl-2.0.html>
4

  
2 5
"""
3 6
Validateur et convertisseur de dates selon un format.
4 7
"""
vigiboard/tests/__init__.py
1 1
# -*- coding: utf-8 -*-
2
# Copyright (C) 2006-2011 CS-SI
3
# License: GNU GPL v2 <http://www.gnu.org/licenses/gpl-2.0.html>
4

  
2 5
"""Unit and functional test suite for vigiboard."""
3 6

  
4 7
from os import path, environ
vigiboard/tests/functional/plugins/test_details_plugin.py
1 1
# -*- coding: utf-8 -*-
2
# Copyright (C) 2006-2011 CS-SI
3
# License: GNU GPL v2 <http://www.gnu.org/licenses/gpl-2.0.html>
4

  
2 5
"""
3 6
Teste le formulaire donnant les liens vers les outils extérieurs
4 7
et les données de l'historique.
vigiboard/tests/functional/plugins/test_plugin_hls.py
1 1
# -*- coding: utf-8 -*-
2
# Copyright (C) 2006-2011 CS-SI
3
# License: GNU GPL v2 <http://www.gnu.org/licenses/gpl-2.0.html>
4

  
2 5
""" Test du plugin listant les services de haut niveau impactés. """
3 6

  
4 7
from datetime import datetime
vigiboard/tests/functional/test_authentication.py
1 1
# -*- coding: utf-8 -*-
2
# Copyright (C) 2006-2011 CS-SI
3
# License: GNU GPL v2 <http://www.gnu.org/licenses/gpl-2.0.html>
4

  
2 5
"""
3 6
Integration tests for the :mod:`repoze.who`-powered authentication sub-system.
4 7

  
vigiboard/tests/functional/test_correvents_table.py
1 1
# -*- coding: utf-8 -*-
2 2
# vim:set expandtab tabstop=4 shiftwidth=4:
3
# Copyright (C) 2006-2011 CS-SI
4
# License: GNU GPL v2 <http://www.gnu.org/licenses/gpl-2.0.html>
5

  
3 6
"""
4 7
Test du tableau d'événements de Vigiboard
5 8
"""
vigiboard/tests/functional/test_group_selection_tree.py
1 1
# -*- coding: utf-8 -*-
2
# Copyright (C) 2006-2011 CS-SI
3
# License: GNU GPL v2 <http://www.gnu.org/licenses/gpl-2.0.html>
4

  
2 5
"""
3 6
Teste l'arbre de sélection des groupes du formulaire de recherche
4 7
"""
vigiboard/tests/functional/test_history_table.py
1 1
# -*- coding: utf-8 -*-
2 2
# vim:set expandtab tabstop=4 shiftwidth=4:
3
# Copyright (C) 2006-2011 CS-SI
4
# License: GNU GPL v2 <http://www.gnu.org/licenses/gpl-2.0.html>
5

  
3 6
"""
4 7
Vérifie que la page qui affiche l'historique des actions sur un événement
5 8
brut fonctionne correctement.
vigiboard/tests/functional/test_raw_events_table.py
1 1
# -*- coding: utf-8 -*-
2 2
# vim:set expandtab tabstop=4 shiftwidth=4:
3
# Copyright (C) 2006-2011 CS-SI
4
# License: GNU GPL v2 <http://www.gnu.org/licenses/gpl-2.0.html>
5

  
3 6
"""
4 7
Test du tableau d'événements de Vigiboard
5 8
"""
vigiboard/tests/functional/test_root.py
1 1
# -*- coding: utf-8 -*-
2
# Copyright (C) 2006-2011 CS-SI
3
# License: GNU GPL v2 <http://www.gnu.org/licenses/gpl-2.0.html>
4

  
2 5
"""
3 6
Functional test suite for the root controller.
4 7

  
vigiboard/tests/functional/test_search_form_host.py
1 1
# -*- coding: utf-8 -*-
2
# Copyright (C) 2006-2011 CS-SI
3
# License: GNU GPL v2 <http://www.gnu.org/licenses/gpl-2.0.html>
4

  
2 5
"""
3 6
Teste le formulaire de recherche avec un nom d'hôte.
4 7
"""
vigiboard/tests/functional/test_search_form_misc.py
1 1
# -*- coding: utf-8 -*-
2
# Copyright (C) 2006-2011 CS-SI
3
# License: GNU GPL v2 <http://www.gnu.org/licenses/gpl-2.0.html>
4

  
2 5
"""
3 6
Teste le formulaire de recherche avec divers champs.
4 7
"""
vigiboard/tests/functional/test_search_form_service.py
1 1
# -*- coding: utf-8 -*-
2
# Copyright (C) 2006-2011 CS-SI
3
# License: GNU GPL v2 <http://www.gnu.org/licenses/gpl-2.0.html>
4

  
2 5
"""
3 6
Teste le formulaire de recherche avec un nom de service.
4 7
"""
vigiboard/tests/functional/test_search_form_supitemgroup.py
1 1
# -*- coding: utf-8 -*-
2
# Copyright (C) 2006-2011 CS-SI
3
# License: GNU GPL v2 <http://www.gnu.org/licenses/gpl-2.0.html>
4

  
2 5
"""
3 6
Teste le formulaire de recherche avec un groupe d'hôtes.
4 7
"""
vigiboard/tests/functional/utils.py
1 1
# -*- coding: utf-8 -*-
2 2
# vim:set expandtab tabstop=4 shiftwidth=4:
3
# Copyright (C) 2006-2011 CS-SI
4
# License: GNU GPL v2 <http://www.gnu.org/licenses/gpl-2.0.html>
5

  
3 6
"""
4 7
Fonctions utilitaires réutilisables dans les différents tests.
5 8
"""

Also available in: Unified diff