diff --git a/CONTRIBS.md b/CONTRIBS.md index 54e0adf4..5e0e2a68 100644 --- a/CONTRIBS.md +++ b/CONTRIBS.md @@ -1,9 +1,9 @@ So far, these people have contributed: --------------------------------------- [Bananeweizen](https://github.com/Bananeweizen), [blakjakau](https://github.com/blakjakau), [boombuler](https://github.com/boombuler), +[breunigs](https://github.com/breunigs), [ccjon](https://github.com/ccjon), [cmrn](https://github.com/cmrn), [epf](https://github.com/epf), diff --git a/build.py b/build.py index af6241d4..a7ace7e2 100755 --- a/build.py +++ b/build.py @@ -93,7 +93,7 @@ def loaderMD(var): payload = {'text': file, 'mode': 'markdown'} headers = {'Content-Type': 'application/json'} req = urllib2.Request(url, json.dumps(payload).encode('utf8'), headers) - md = urllib2.urlopen(req).read().decode('utf8').replace('\n', '').replace('\'', '\\\'') + md = urllib2.urlopen(req).read().decode('utf8').replace('\n', '\\n').replace('\'', '\\\'') files[fn] = {} files[fn][filemd5] = md db['files'] = files diff --git a/code/utils_misc.js b/code/utils_misc.js index 6a5b1e76..c5d74acb 100644 --- a/code/utils_misc.js +++ b/code/utils_misc.js @@ -3,6 +3,7 @@ window.aboutIITC = function(){ var v = '@@BUILDNAME@@-@@BUILDDATE@@'; var attrib = '@@INCLUDEMD:ATTRIBUTION.md@@'; + var contrib = '@@INCLUDEMD:CONTRIBS.md@@' var a = '' + '
About IITC
' + '
Ingress Intel Total Conversion
' @@ -23,7 +24,9 @@ window.aboutIITC = function(){ + '
' + '
Version: ' + v + '
' + '
' - + '
' + attrib + '
'; + + '
' + attrib + '
' + + '
' + + '
' + contrib + '
'; alert(a, true, function() {$('.ui-dialog').removeClass('ui-dialog-aboutIITC');}); $('.ui-dialog').addClass('ui-dialog-aboutIITC'); }