Skip to content

Commit c3d2f15

Browse files
Merge pull request #516 from c00kiemon5ter/feature-tidy-metadata
Tidy metadata and project files
2 parents cd48afe + bf72330 commit c3d2f15

31 files changed

+386
-313
lines changed

.bzrignore

Lines changed: 0 additions & 12 deletions
This file was deleted.

.editorconfig

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 4
7+
tab_width = 4
8+
end_of_line = lf
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
max_line_length = 79
12+
13+
[*.y{a,}ml]
14+
indent_size = 2
15+
tab_width = 2
16+
17+
[*.html]
18+
indent_style = tab
19+
20+
[*.js]
21+
indent_style = tab
22+
23+
[*.css]
24+
indent_style = tab
File renamed without changes.
File renamed without changes.

.gitignore

Lines changed: 150 additions & 163 deletions
Original file line numberDiff line numberDiff line change
@@ -1,205 +1,192 @@
1-
*.pyc
2-
*.~
3-
\#*
4-
.*~
5-
.eggs
6-
*.egg
7-
*.egg-info
8-
example/*/*.log
9-
example/*.db
10-
example/*/*.db
11-
tests/*.db
12-
tests/*.log
13-
build/
14-
dist/
15-
example/sp/identities
16-
subject.db
17-
.idea
18-
.project
19-
.pydevproject
20-
.DS_store
21-
.gitignore
22-
debug_*
23-
*.log
24-
*.out
25-
tmp*
26-
*.tmp
27-
*.log.*
28-
*.db
29-
*egg-info*
30-
.coverage
31-
*.tmpl
32-
*.iml
33-
_build/
34-
.cache
35-
*.swp
36-
.tox
37-
env
38-
bin/
39-
include/
40-
lib/
41-
local/
42-
pip-selfcheck.json
43-
44-
example/idp3/htdocs/login.mako
45-
46-
example/idp3/idp.py
47-
48-
example/idp3/idp.xml
49-
50-
example/idp3/idp_conf.py
51-
52-
example/idp3/idp_err.xml
53-
54-
example/idp3/idp_user.py
55-
56-
example/idp3/metadata.xml
57-
58-
example/idp3/modules/login.mako.py
59-
60-
example/idp3/modules/root.mako.py
61-
62-
example/idp3/pki/create_key.sh
63-
64-
example/idp3/pki/mycert.pem
65-
66-
example/idp3/pki/mykey.pem
67-
68-
example/idp3/templates/root.mako
69-
70-
example/sp2/attributemaps/basic.py
71-
72-
example/sp2/attributemaps/saml_uri.py
73-
74-
example/sp2/attributemaps/shibboleth_uri.py
75-
76-
example/sp2/pki/mycert.pem
77-
78-
example/sp2/pki/mykey.pem
79-
80-
example/sp2/sp.py
81-
82-
example/sp2/sp.xml
1+
### Custom.gitignore
832

84-
example/sp2/sp_conf.py
3+
example/*/*.subject
4+
example/*/*.xml
5+
example/*/*_conf.py
6+
example/*/modules/
857

86-
example/sp2/who.ini
87-
88-
example/idp2/idp.xml
89-
90-
example/idp2/idp_conf_test.py
91-
92-
example/idp2/metadata.xml
93-
94-
example/idp2/modules/login.mako.py
95-
96-
example/idp2/modules/root.mako.py
97-
98-
example/idp3/idp_conf_test.py
99-
100-
update
101-
102-
src/saml2/entity_category/swamid2.py
103-
104-
example/idp2/IdpTestConf.py
105-
106-
example/idp2/create_idp_conf.json
107-
108-
example/idp2/create_idp_conf.py
109-
110-
example/idp2/idpSaml2test.xml
111-
112-
example/idp2/idp_conf.template
113-
114-
example/idp2/idp_conf_saml2test.py
115-
116-
example/sp/sp.xml
117-
118-
example/idp2/idp_conf_local.py
119-
120-
example/sp/sp_conf_local.py
121-
122-
example/sp/my_backup_sp_conf_local.py
123-
124-
example/sp/backup_sp_conf_local.py
8+
tests/*.log.*
9+
tests/*.db
12510

126-
example/idp2/pki/localhost.ca.crt
11+
eptid
12712

128-
example/idp2/pki/localhost.ca.crt
12913

130-
example/idp2/pki/localhost.ca.key
14+
### Python.gitignore
15+
### https://github.com/github/gitignore/blob/master/Python.gitignore
13116

132-
example/idp2/pki/localhost.ca.key
17+
# Byte-compiled / optimized / DLL files
18+
__pycache__/
19+
*.py[cod]
20+
*$py.class
13321

134-
example/sp/pki/localhost.ca.crt
22+
# C extensions
23+
*.so
13524

136-
example/sp/pki/localhost.ca.crt
25+
# Distribution / packaging
26+
.Python
27+
build/
28+
develop-eggs/
29+
dist/
30+
downloads/
31+
eggs/
32+
.eggs/
33+
lib/
34+
lib64/
35+
parts/
36+
sdist/
37+
var/
38+
wheels/
39+
*.egg-info/
40+
.installed.cfg
41+
*.egg
42+
MANIFEST
43+
44+
# PyInstaller
45+
#
46+
# Usually these files are written by a python script from a template before
47+
# PyInstaller builds the exe, so as to inject date/other infos into it.
48+
*.manifest
49+
*.spec
50+
51+
# Installer logs
52+
pip-log.txt
53+
pip-delete-this-directory.txt
54+
55+
# Unit test / coverage reports
56+
htmlcov/
57+
.tox/
58+
.coverage
59+
.coverage.*
60+
.cache
61+
nosetests.xml
62+
coverage.xml
63+
*.cover
64+
.hypothesis/
65+
.pytest_cache/
13766

138-
example/sp/pki/localhost.ca.key
67+
# Translations
68+
*.mo
69+
*.pot
13970

140-
example/sp/pki/localhost.ca.key
71+
# Django stuff:
72+
*.log
73+
local_settings.py
74+
db.sqlite3
14175

142-
example/idp2/idp_conf_dirgweb.py
76+
# Flask stuff:
77+
instance/
78+
.webassets-cache
14379

144-
example/idp2/idp_conf_nocert.py
80+
# Scrapy stuff:
81+
.scrapy
14582

146-
example/idp2/idp_conf_proxy.py
83+
# Sphinx documentation
84+
docs/_build/
14785

148-
example/idp2/idp_nocert.xml
86+
# PyBuilder
87+
target/
14988

150-
example/sp/nocert_sp_conf/sp_nocert.xml
89+
# Jupyter Notebook
90+
.ipynb_checkpoints
15191

152-
example/sp/normal_sp_conf/sp.xml
92+
# pyenv
93+
.python-version
15394

154-
example/sp/normal_sp_conf/sp_conf.py
95+
# celery beat schedule file
96+
celerybeat-schedule
15597

156-
example/sp/normal_sp_conf/who.ini
98+
# SageMath parsed files
99+
*.sage.py
157100

158-
example/sp/sp_nocert.xml
101+
# Environments
102+
.env
103+
.venv
104+
env/
105+
venv/
106+
ENV/
107+
env.bak/
108+
venv.bak/
159109

160-
example/sp/sp_nocert2.xml
110+
# Spyder project settings
111+
.spyderproject
112+
.spyproject
161113

162-
example/sp/test.py
114+
# Rope project settings
115+
.ropeproject
163116

164-
example/sp/sp_conf.py
117+
# mkdocs documentation
118+
/site
165119

166-
example/sp/nocert_sp_conf/sp.xml
120+
# mypy
121+
.mypy_cache/
167122

168-
example/sp/nocert_sp_conf/sp_conf.py
169123

170-
example/sp/nocert_sp_conf/who.ini
124+
### Linux.gitignore
125+
### https://github.com/github/gitignore/blob/master/Global/Linux.gitignore
171126

172-
example/sp-repoze/my_sp.xml
127+
*~
173128

174-
example/sp-repoze/pki/localhost.ca.crt
129+
# temporary files which can be created if a process still has a handle open of a deleted file
130+
.fuse_hidden*
175131

176-
example/sp-repoze/pki/localhost.ca.key
132+
# KDE directory preferences
133+
.directory
177134

178-
example/sp-repoze/sp.xml
135+
# Linux trash folder which might appear on any partition or disk
136+
.Trash-*
179137

180-
example/sp-repoze/sp.xml
138+
# .nfs files are created when an open file is removed but is still being accessed
139+
.nfs*
181140

182-
example/sp-repoze/sp_conf.py
183141

184-
example/sp-repoze/sp_conf.py
142+
### masOS.gitignore
143+
### https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
185144

186-
example/idp2/sp_test.xml
145+
# General
146+
.DS_Store
147+
.AppleDouble
148+
.LSOverride
187149

188-
example/sp-repoze/idp_test.xml
150+
# Icon must end with two \r
151+
Icon
189152

190-
example/sp-repoze/sp_conf_example.py
153+
# Thumbnails
154+
._*
191155

192-
example/idp2/idp_conf_example.py
156+
# Files that might appear in the root of a volume
157+
.DocumentRevisions-V100
158+
.fseventsd
159+
.Spotlight-V100
160+
.TemporaryItems
161+
.Trashes
162+
.VolumeIcon.icns
163+
.com.apple.timemachine.donotpresent
193164

194-
example/idp2/lidp.xml
165+
# Directories potentially created on remote AFP share
166+
.AppleDB
167+
.AppleDesktop
168+
Network Trash Folder
169+
Temporary Items
170+
.apdisk
195171

196-
example/idp2/old_idp.xml
197172

198-
example/sp-repoze/old_sp.xml
173+
### Vim.gitignore
174+
### https://github.com/github/gitignore/blob/master/Global/Vim.gitignore
199175

200-
example/sp-repoze/sp_conf_2.Pygmalion
176+
# Swap
177+
[._]*.s[a-v][a-z]
178+
[._]*.sw[a-p]
179+
[._]s[a-rt-v][a-z]
180+
[._]ss[a-gi-z]
181+
[._]sw[a-p]
201182

202-
example/sp-repoze/sp_conf_2.py
183+
# Session
184+
Session.vim
203185

204-
sp.xml
205-
tests/pki/qwerty.*
186+
# Temporary
187+
.netrwhist
188+
*~
189+
# Auto-generated tag files
190+
tags
191+
# Persistent undo
192+
[._]*.un~

0 commit comments

Comments
 (0)