Skip to content

Commit 111fe38

Browse files
committed
Added the dutch signbank repository
0 parents  commit 111fe38

File tree

860 files changed

+493705
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

860 files changed

+493705
-0
lines changed

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.hg/*
2+
.hgignore
3+
build/django
4+
*~
5+
.DS_Store
6+
*.pyc
7+
*.idea*
8+
9+
media/css/.DS_Store
10+
11+
media/css/.DS_Store

LICENCE.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Copyright (c) 2014, Steve Cassidy ([email protected])
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
5+
6+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7+
8+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
9+
10+
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
11+
12+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
13+
14+

bin/develop.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env python
2+
import os, sys
3+
4+
if __name__ == "__main__":
5+
sys.path.append(os.path.dirname(os.path.dirname(__file__)))
6+
7+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "signbank.settings.development")
8+
9+
from django.core.management import execute_from_command_line
10+
11+
execute_from_command_line(sys.argv)

bin/production.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env python
2+
import os, sys
3+
4+
if __name__ == "__main__":
5+
sys.path.append(os.path.dirname(os.path.dirname(__file__)))
6+
7+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "signbank.settings.production")
8+
9+
from django.core.management import execute_from_command_line
10+
11+
execute_from_command_line(sys.argv)

bin/runtests.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/usr/bin/env python
2+
import os, sys
3+
4+
if __name__ == "__main__":
5+
sys.path.append(os.path.dirname(os.path.dirname(__file__)))
6+
7+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "signbank.settings.testing")
8+
9+
from django.core.management import call_command
10+
from django.conf import settings
11+
12+
applen = len('signbank.apps.')
13+
14+
apps_for_testing = [app[applen:] for app in settings.INSTALLED_APPS
15+
if app.startswith("signbank.apps")]
16+
17+
call_command("test", *apps_for_testing)

bin/staging.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env python
2+
import os, sys
3+
4+
if __name__ == "__main__":
5+
sys.path.append(os.path.dirname(os.path.dirname(__file__)))
6+
7+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "signbank.settings.staging")
8+
9+
from django.core.management import execute_from_command_line
10+
11+
execute_from_command_line(sys.argv)

bootstrap_templates/403.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{% extends "baselayout.html" %}
2+
3+
{% block content %}
4+
5+
<h2>Permission Denied</h2>
6+
7+
<p>You do not have permission to view the requested page.</p>
8+
9+
10+
{% endblock %}
11+

bootstrap_templates/404.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
3+
{% extends "baselayout.html" %}
4+
5+
{% block content %}
6+
7+
<p>The requested page was not found on the server. Please use
8+
the menu above to navigate to another part of the site.
9+
If you continue to experience problems, please contact
10+
the webmaster at <a href="mailto:[email protected]">[email protected]</a>.</p>
11+
12+
{% endblock %}

bootstrap_templates/500.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{% extends "baselayout.html" %}
2+
3+
{% block content %}
4+
5+
6+
<div style="margin-left: 2em; width: 580px;">
7+
8+
<h1>Server Error <em>(500)</em></h1>
9+
<p>There's been an error. It's been reported to the site administrators
10+
via e-mail and should be fixed shortly. Thanks for your patience.</p>
11+
</div>
12+
{% endblock %}

bootstrap_templates/baselayout.html

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<!DOCTYPE html>
2+
{% load bootstrap3 %}
3+
{% load stylesheet %}
4+
<html>
5+
<head>
6+
<title>{% block bootstrap3_title %}Signbank{% endblock %}</title>
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<link href="{{ STATIC_URL }}bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
9+
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}bootstrap_css/style.css">
10+
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}{% primary_css %}">
11+
{% block extrahead %}{% endblock %}
12+
</head>
13+
<body>
14+
15+
<div id='wrap'>
16+
<div class="container">
17+
18+
<div id="leftcontentborder"></div>
19+
<div id="rightcontentborder"></div>
20+
<div id='header'><h1>Signbank</h1>
21+
<div id='logoholder' class='visible-lg visible-md visible-sm'></div>
22+
</div>
23+
24+
<div id='bslstripe'></div>
25+
{% include 'menu.html' %}
26+
27+
{% bootstrap_messages %}
28+
29+
<div role='main'>
30+
{% block content %}(no content){% endblock %}
31+
</div>
32+
33+
</div>
34+
</div>
35+
36+
<div id="footer">
37+
<div class='container'>
38+
<div id="copyright">
39+
<!--
40+
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">
41+
42+
<img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br />
43+
-->
44+
<span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Dataset" property="dct:title" rel="dct:type">The NGT Signbank</span> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons BY-NC-SA 4.0 International License</a>.
45+
46+
47+
<a href="{% url 'signbank.feedback.views.generalfeedback' %}">Provide feedback on the site</a>
48+
</div>
49+
</div>
50+
</div>
51+
52+
<script src='{{ STATIC_URL}}js/jquery-1.11.0.min.js'></script>
53+
<script src='{{ STATIC_URL}}bootstrap/js/bootstrap.min.js'></script>
54+
55+
<!-- DataTables -->
56+
<script type="text/javascript" charset="utf-8" src="{{ STATIC_URL }}js/jquery.dataTables.min.js"></script>
57+
58+
{% block extrajs %}{% endblock %}
59+
</body>
60+
</html>
61+
62+
63+

0 commit comments

Comments
 (0)