Skip to content

Commit 63c1373

Browse files
committed
First commit
1 parent 1274c41 commit 63c1373

16 files changed

+1022
-0
lines changed

.gitignore

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Compiled source #
2+
###################
3+
*.com
4+
*.class
5+
*.dll
6+
*.exe
7+
*.o
8+
*.so
9+
*.pyc
10+
*.fs
11+
12+
# Packages #
13+
############
14+
# it's better to unpack these files and commit the raw source
15+
# git has its own built in compression methods
16+
*.7z
17+
*.dmg
18+
*.gz
19+
*.iso
20+
*.jar
21+
*.rar
22+
*.tar
23+
*.zip
24+
25+
# Logs and databases #
26+
######################
27+
*.log
28+
*.sql
29+
*.sqlite
30+
31+
# OS generated files #
32+
######################
33+
.DS_Store*
34+
ehthumbs.db
35+
Icon?
36+
Thumbs.db
37+
38+
# Folders #
39+
######################
40+
.idea/

README

+2
Original file line numberDiff line numberDiff line change
@@ -352,3 +352,5 @@ post_clonenode_l3vpn.json
352352
}
353353
}
354354
}
355+
356+
This file was modified by PyCharm 2.0.1 for binding GitHub repository
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2+
3+
# Copyright (C) 2011 Houssem Medhioub - Institut Telecom
4+
#
5+
# This library is free software: you can redistribute it and/or modify
6+
# it under the terms of the GNU Lesser General Public License as
7+
# published by the Free Software Foundation, either version 3 of
8+
# the License, or (at your option) any later version.
9+
#
10+
# This library is distributed in the hope that it will be useful,
11+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
# GNU Lesser General Public License for more details.
14+
#
15+
# You should have received a copy of the GNU Lesser General Public License
16+
# along with this library. If not, see <http://www.gnu.org/licenses/>.
17+
18+
"""
19+
Created on Feb 25, 2011
20+
21+
@author: Houssem Medhioub
22+
23+
@organization: Institut Telecom - Telecom SudParis
24+
@version: 0.1
25+
@license: LGPL - Lesser General Public License
26+
"""

0 commit comments

Comments
 (0)