doc-review 0.7 → 0.7.1
raw patch · 4 files changed
+20/−6 lines, 4 files
Files
- CHANGES.rst +9/−0
- TODO.rst +8/−4
- doc-review.cabal +2/−1
- static/support/javascript/hsbook.js +1/−1
+ CHANGES.rst view
@@ -0,0 +1,9 @@+Release 0.7.1+--------------------------------------------------++Fixed JavaScript syntax error in hsbook.js++Release 0.7+--------------------------------------------------++Initial public release
TODO.rst view
@@ -18,12 +18,16 @@ * Have the server add the ``<script>`` and ``<link>`` tags to documents in the content directory automatically - * Add a PostgreSQL storage backend+ * Data storage - * Add a MySQL storage backend+ * Add a PostgreSQL storage backend - * Make building SQLite support optional (so you do not need to build- it unless you are using that backend)+ * Add a MySQL storage backend++ * Make building SQLite support optional (so you do not need to build+ it unless you are using that backend)++ * Make the flat-file backend reliable * Add support for handing proxy host headers so that URLs get generated properly (e.g. X-Forwarded-Host)
doc-review.cabal view
@@ -1,5 +1,5 @@ Name: doc-review-Version: 0.7+Version: 0.7.1 Synopsis: Document review Web application, like http://book.realworldhaskell.org/ Description: A standalone Web application that provides for@@ -27,6 +27,7 @@ static/support/icons/*.gif extra-source-files:+ CHANGES.rst, README.rst, API.rst, TODO.rst
static/support/javascript/hsbook.js view
@@ -112,7 +112,7 @@ chapid + "/count/", function(data) { $.each(data, function(id, item) { $("#comments_" + qid(id) + " span.commenttoggle").replaceWith(- commentLink(id, item);+ commentLink(id, item) ); }); $("span.commenttoggle").each(function() {