Browse Source

Update TODO, cosmetic changes to the map, add an empty API page

Gu1 11 years ago
parent
commit
90bcb4d1b9
5 changed files with 10 additions and 2 deletions
  1. 2 1
      TODO
  2. 1 0
      ffdnispdb/static/css/style.css
  3. 1 1
      ffdnispdb/templates/layout.html
  4. 5 0
      ffdnispdb/views.py
  5. 1 0
      settings_prod.py.dist

+ 2 - 1
TODO

@@ -1,7 +1,7 @@
 
 
 - Crawler:
-* i18n
+~ i18n
 X http cache support
 X write a "cron task" to periodically update the data
 
@@ -16,6 +16,7 @@ X Full-text search engine based on woosh
 X Access-control on the edit feature
 * separate config for prod/dev, email admin on error for prod
 ~ write unit-test
+* better cache support
 
 
 Legend:

+ 1 - 0
ffdnispdb/static/css/style.css

@@ -289,6 +289,7 @@ footer:hover p {
 
 #map {
     height: 600px;
+    box-shadow: 0 0 4px #BBBBBB;
 }
 
 .leaflet-popup-content {

+ 1 - 1
ffdnispdb/templates/layout.html

@@ -39,7 +39,7 @@
             {{ menu_item(_("Home"), '.home') }}
             {{ menu_item(_("Project List"), '.project_list') }}
             {{ menu_item(_("Format"), '.format') }}
-            {{ menu_item(_("API")) }}
+            {{ menu_item(_("API"), '.api') }}
             <li class="divider-vertical"></li>
           </ul>
         </div>

+ 5 - 0
ffdnispdb/views.py

@@ -377,6 +377,11 @@ def format():
     return render_template('format_spec.html', spec=Markup(parts['html_body']))
 
 
+@ispdb.route('/api', methods=['GET'])
+def api():
+    return render_template('api.html')
+
+
 @ispdb.route('/humans.txt', methods=['GET'])
 def humans():
     import os.path

+ 1 - 0
settings_prod.py.dist

@@ -5,3 +5,4 @@ EMAIL_SENDER='FFDN DB <no-reply@db.ffdn.org>'
 #SERVER_NAME = 'db.ffdn.org'
 DEBUG = False
 SECRET_KEY = None # Generate one
+ADMINS = ('your@email.com',)