Browse Source

Add an AUTHORS file, also use it as humans.txt

Gu1 11 years ago
parent
commit
a25cf0016a
3 changed files with 30 additions and 0 deletions
  1. 22 0
      AUTHORS
  2. 1 0
      ffdnispdb/templates/layout.html
  3. 7 0
      ffdnispdb/views.py

+ 22 - 0
AUTHORS

@@ -0,0 +1,22 @@
+ _______ _______ ______  _______ 
+|_______|_______|_____ \|  ___  \
+ ______  ______  _    \ | |   \ |   ____  _____ 
+|   ___)|   ___)| |   | | |   | |  |    \| __  |
+|  |    |  |    | |__/ /| |   | |  |  |  | __ -|
+|__|    |__|    |_____/ |_|   |_|  |____/|_____|
+
+
+/* MAIN AUTHORS */
+
+	Guillaume Subiron <maethor@subiron.org>
+	Gu1 <gu1@cafai.fr>
+
+
+/* CONTRIBUTORS */
+
+	Rogdham <contact@rogdham.net>
+
+
+/* TRANSLATORS */
+
+	No one yet

+ 1 - 0
ffdnispdb/templates/layout.html

@@ -8,6 +8,7 @@
     <meta charset="utf-8">
     <title>FFDN ISP Database</title>
     <!-- meta -->
+    <link type="text/plain" rel="author" href="/humans.txt" />
     <!-- icon
     <link rel="shortcut icon" href="favicon.ico"> -->
     <!-- css -->

+ 7 - 0
ffdnispdb/views.py

@@ -371,6 +371,13 @@ def format():
     return render_template('format_spec.html', spec=Markup(parts['html_body']))
 
 
+@app.route('/humans.txt', methods=['GET'])
+def humans():
+    import os.path
+    authors_file=os.path.join(os.path.dirname(__file__), '../AUTHORS')
+    return Response(open(authors_file), mimetype='text/plain; charset=utf-8')
+
+
 #------
 # Filters